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
There are no user contributed notes for this page.
