(PHP 5, PHP 7, PHP 8)
ReflectionClass::getEndLine — 获取结束行
获取用户定义类定义的结束行号。
此函数没有参数。
用户定义类的结束行号,如果未知则为false。
false
示例 #1 ReflectionClass::getEndLine() 示例
<?php// 测试类class TestClass { }$rc = new ReflectionClass('TestClass');echo $rc->getEndLine();?>
以上示例将输出
3