ReflectionClass::getEndLine

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getEndLine獲取最后一行的行數(shù)

說(shuō)明

public ReflectionClass::getEndLine(): int

從用戶定義的類獲取其最后一行的行數(shù)。

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

返回用戶定義的類最后一行的行數(shù),如果未知?jiǎng)t返回 false。

范例

示例 #1 ReflectionClass::getEndLine() 例子

<?php
// Test Class
class TestClass { }

$rc = new ReflectionClass('TestClass');

echo 
$rc->getEndLine();
?>

以上例程會(huì)輸出:

3

參見