ReflectionClass::getEndLine
(PHP 5)
ReflectionClass::getEndLine — Gets end line
Descrizione
public int ReflectionClass::getEndLine
( void
)
Gets end line number from a user-defined class definition.
Elenco dei parametri
Questa funzione non contiene parametri.
Valori restituiti
The ending line number of the user defined class, or FALSE if unknown.
Esempi
Example #1 ReflectionClass::getEndLine() example
<?php
// Test Class
class TestClass { }
$rc = new ReflectionClass('TestClass');
echo $rc->getEndLine();
?>
Il precedente esempio visualizzerĂ :
3
There are no user contributed notes for this page.
