ReflectionClass::getStartLine

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getStartLine获取起始行号

描述

public ReflectionClass::getStartLine(): int|false

获取起始行号。

参数

此函数没有参数。

返回值

起始行号,以 int 表示,如果未知则为 false

参见

添加备注

用户贡献备注 1 备注

info at ensostudio dot ru
2 年前
注意:文件中的行从 1 开始!
获取类代码的示例
<?php
$class
= new ReflectionClass('Foo');
$offset = $class->getStartLine() - 1;
$code = implode(
'',
array_slice(
file($class->getFileName()),
$offset,
$class->getEndLine() - $offset
)
);
?>
To Top