ReflectionClass
PHP Manual

ReflectionClass::getEndLine

(PHP 5)

ReflectionClass::getEndLineGets end line

Описание

public int ReflectionClass::getEndLine ( void )

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

Смотрите также


ReflectionClass
PHP Manual