(PHP 5)
ReflectionClass::getEndLine — دریافت خط پایان
دریافت شماره خط پایان از تعریف کلاس کاربر.
This function has no parameters.
شماره خط پایان کلاس کاربر یا FALSE اگر شناخته نشده باشد.
Example #1 مثال ReflectionClass::getEndLine()
<?php
// Test Class
class TestClass { }
$rc = new ReflectionClass('TestClass');
echo $rc->getEndLine();
?>
The above example will output:
3