(PHP 5, PHP 7, PHP 8)
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