📜  PHP |反射 getNamespaceName()函数

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

PHP |反射 getNamespaceName()函数

Reflection::getNamespaceName()函数是PHP中的一个内置函数,用于返回指定命名空间的名称。

句法:

string Reflection::getNamespaceName( void )

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

返回值:该函数返回指定命名空间的名称。

下面的程序说明了PHP中的 Reflection::getNamespaceName()函数:
方案一:

getNamespaceName();
   
// Getting the name of the specified namespace
var_dump($A);
?>
输出:
string(3) "A\B"

方案二:

getNamespaceName();
    
// Getting the name of the namespace
var_dump($A);
?>
输出:
string(0) ""

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