ReflectionClass::getEndLine

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getEndLine获取结束行

描述

public ReflectionClass::getEndLine(): int|false

从用户定义的类定义中获取结束行号。

参数

此函数没有参数。

返回值

用户定义类的结束行号,如果未知则为 false

示例

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

<?php
// 测试类
class TestClass { }

$rc = new ReflectionClass('TestClass');

echo
$rc->getEndLine();
?>

上面的示例将输出

3

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top