注意:文件中的行从 1 开始!
获取类代码的示例
<?php
$class = new ReflectionClass('Foo');
$offset = $class->getStartLine() - 1;
$code = implode(
'',
array_slice(
file($class->getFileName()),
$offset,
$class->getEndLine() - $offset
)
);
?>
(PHP 5, PHP 7, PHP 8)
ReflectionClass::getStartLine — 获取起始行号
此函数没有参数。
注意:文件中的行从 1 开始!
获取类代码的示例
<?php
$class = new ReflectionClass('Foo');
$offset = $class->getStartLine() - 1;
$code = implode(
'',
array_slice(
file($class->getFileName()),
$offset,
$class->getEndLine() - $offset
)
);
?>