📜  PHP |反射类 getFileName()函数

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

PHP |反射类 getFileName()函数

ReflectionClass::getFileName()函数是PHP中的一个内置函数,用于返回已定义类的文件的文件名,如果未找到该文件,则返回 false。

句法:

string ReflectionClass::getFileName( void )

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

返回值:此函数返回已定义类的文件的文件名,如果未找到该文件,则返回 false。

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

方案一:

getFileName();
   
// Getting the name of the file 
// in which the class has been defined
var_dump($A);
?>
输出:
string(23) "C:\xampp\htdocs\gfg.php"

方案二:

getFileName();
   
// Getting the name of the file 
// in which the class has been defined
var_dump($A);
?>
输出:
bool(false)

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