PHP Conference Japan 2024

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