ReflectionClass
PHP Manual

ReflectionClass::getEndLine

(PHP 5, PHP 7)

ReflectionClass::getEndLineGets end line

Beschreibung

public int ReflectionClass::getEndLine ( void )

Gets end line number from a user-defined class definition.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

The ending line number of the user defined class, or FALSE if unknown.

Beispiele

Beispiel #1 ReflectionClass::getEndLine() example

<?php
// Test Class
class TestClass { }

$rc = new ReflectionClass('TestClass');

echo 
$rc->getEndLine();
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

3

Siehe auch


ReflectionClass
PHP Manual