(PHP 5, PHP 7, PHP 8)
ReflectionClass::getEndLine — 獲取最后一行的行數(shù)
從用戶定義的類獲取其最后一行的行數(shù)。
此函數(shù)沒有參數(shù)。
返回用戶定義的類最后一行的行數(shù),如果未知則返回 false
。
示例 #1 ReflectionClass::getEndLine() 例子
<?php
// Test Class
class TestClass { }
$rc = new ReflectionClass('TestClass');
echo $rc->getEndLine();
?>
以上例程會輸出:
3