ReflectionClass::getEndLine
(PHP 5)
ReflectionClass::getEndLine — Gets end line
Descrierea
public int ReflectionClass::getEndLine
( void
)
Gets end line number from a user-defined class definition.
Parametri
Această funcţie nu are parametri.
Valorile întroarse
The ending line number of the user defined class, or FALSE if unknown.
Exemple
Example #1 ReflectionClass::getEndLine example
<?php
// Test Class
class TestClass { }
$rc = new ReflectionClass('TestClass');
echo $rc->getEndLine();
?>
Exemplul de mai sus va afişa:
3
ReflectionClass::getEndLine
There are no user contributed notes for this page.
