suche nach in der

ReflectionClass::getExtension> <ReflectionClass::getDocComment
Last updated: Fri, 25 May 2012

view this page in

ReflectionClass::getEndLine

(PHP 5)

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



add a note add a note User Contributed Notes
ReflectionClass::getEndLine
There are no user contributed notes for this page.