📜  PHP | ReflectionClass getExtensionName()函数

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

PHP | ReflectionClass getExtensionName()函数

ReflectionClass::getExtensionName()函数是PHP中的一个内置函数,用于返回定义类的扩展名或用户定义类的 false。
句法:

string ReflectionClass::getExtensionName( void )

参数:此函数不接受任何参数。
返回值:此函数返回定义类的扩展名或用户定义类的 false。
下面的程序说明了PHP中的 ReflectionClass::getExtensionName()函数:
方案一:

php
getExtensionName();
  
// Getting the name of the extension
var_dump($A);
?>


php
getExtensionName();
  
// Getting the name of the extension
var_dump($A);
?>


输出:
bool(false)

方案二:

PHP

getExtensionName();
  
// Getting the name of the extension
var_dump($A);
?>
输出:
string(10) "Reflection"

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