📜  PHP |反射类 getEndLine()函数

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

PHP |反射类 getEndLine()函数

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

句法:

int ReflectionClass::getEndLine( void )

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

返回值:该函数返回用户定义类结束的行号。

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

方案一:

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

输出:

int(4)

方案二:

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

输出:

int(8)

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