📜  PHP |反射 getShortName()函数

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

PHP |反射 getShortName()函数

Reflection::getShortName()函数是PHP中的一个内置函数,用于返回指定类的短名称,即没有命名空间的部分。

句法:

string Reflection::getShortName( void )

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

返回值:该函数返回指定类的短名称,没有命名空间的部分。

下面的程序说明了PHP中的 Reflection::getShortName()函数:

方案一:

getShortName();
   
// Getting the short name of the specified class
var_dump($A);
?>
输出:
string(3) "GFG"

方案二:

getShortName();
    
// Getting the short name of the specified class
var_dump($A);
?>
输出:
string(15) "ReflectionClass"

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