downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ReflectionClass::getExtension> <ReflectionClass::getDocComment
[edit] Last updated: Fri, 17 May 2013

view this page in

ReflectionClass::getEndLine

(PHP 5)

ReflectionClass::getEndLineGets end line

Descrição

public int ReflectionClass::getEndLine ( void )

Gets end line number from a user-defined class definition.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The ending line number of the user defined class, or FALSE if unknown.

Exemplos

Exemplo #1 ReflectionClass::getEndLine() example

<?php
// Test Class
class TestClass { }

$rc = new ReflectionClass('TestClass');

echo 
$rc->getEndLine();
?>

O exemplo acima irá imprimir:

3

Veja Também



add a note add a note User Contributed Notes ReflectionClass::getEndLine - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites