ReflectionClass
PHP Manual

ReflectionClass::getEndLine

(PHP 5)

ReflectionClass::getEndLineدریافت خط پایان

Description

public int ReflectionClass::getEndLine ( void )

دریافت شماره خط پایان از تعریف کلاس کاربر.

Parameters

This function has no parameters.

Return Values

شماره خط پایان کلاس کاربر یا FALSE اگر شناخته نشده باشد.

Examples

Example #1 مثال ReflectionClass::getEndLine()

<?php
// Test Class
class TestClass { }

$rc = new ReflectionClass('TestClass');

echo 
$rc->getEndLine();
?>

The above example will output:

3

See Also


ReflectionClass
PHP Manual