📜  PHP | ReflectionClass getStartLine()函数

📅  最后修改于: 2022-05-13 01:56:48.335000             🧑  作者: Mango

PHP | ReflectionClass getStartLine()函数

ReflectionClass::getStartLine()函数是PHP中的一个内置函数,用于返回用户定义类开始的行号。

句法:

int ReflectionClass::getStartLine( void )

参数:此函数不接受任何参数。

返回值:此函数返回用户定义类开始的行号。

下面的程序说明了PHP中的 ReflectionClass::getStartLine()函数:

方案一:

getStartLine();
   
// Getting the start line number of 
// the specified class
var_dump($A);
?>

输出:

int(4)

方案二:

getStartLine();
   
// Getting the start line number of 
// the specified class
var_dump($A);
?>

输出:

int(4)

参考: https://www. PHP.net/manual/en/reflectionclass.getstartline。 PHP