ReflectionClass::getStartLine

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getStartLine获取起始行号

说明

public ReflectionClass::getStartLine ( ) : int

获取起始的行号。

Warning

本函数还未编写文档,仅有参数列表。

参数

此函数没有参数。

返回值

起始的行号,类型是 integer 的。

参见

User Contributed Notes

info at ensostudio dot ru 31-Oct-2021 04:28
Note: lines in file start from 1!
Sample to get class code:
<?php
$class
= new ReflectionClass('Foo');
$offset = $class->getStartLine() - 1;
$code = implode(
   
'',
   
array_slice(
       
file($class->getFileName()),
       
$offset,
       
$class->getEndLine() - $offset
   
)
);
?>
PHP8中文手册 站长在线 整理 版权归PHP文档组所有