downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ReflectionClass::getExtension> <ReflectionClass::getDocComment
Last updated: Fri, 20 Nov 2009

view this page in

ReflectionClass::getEndLine

(PHP 5)

ReflectionClass::getEndLineGets end line

Description

public int ReflectionClass::getEndLine ( void )

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

Parameters

This function has no parameters.

Return Values

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

Examples

Example #1 ReflectionClass::getEndLine example

<?php
// Test Class
class TestClass { }

$rc = new ReflectionClass('TestClass');    

echo 
$rc->getEndLine();
?>

The above example will output:

3

See Also



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

 
show source | credits | stats | sitemap | contact | advertising | mirror sites