(PHP 5)
ReflectionClass::getEndLine — Gets end line
Gets end line number from a user-defined class definition.
У этой функции нет параметров.
The ending line number of the user defined class, or FALSE if unknown.
Пример #1 ReflectionClass::getEndLine() example
<?php
// Test Class
class TestClass { }
$rc = new ReflectionClass('TestClass');
echo $rc->getEndLine();
?>
Результат выполнения данного примера:
3