PHP | ReflectionClass getConstants()函数
ReflectionClass::getConstants()函数是PHP中的一个内置函数,用于返回指定常量名称的数组。
句法:
array ReflectionClass::getConstants( void )
参数:此函数不接受任何参数。
返回值:此函数返回指定常量名称的数组。
下面的程序说明了PHP中的 ReflectionClass::getConstants()函数:
方案一:
getConstants();
// Getting an array of the constants
print_r($a);
?>
输出:
Array
(
[First] => GeeksforGeeks
[Second] => GFG
)
方案二:
getConstants();
// Getting an array of the constants
print_r($a);
?>
输出:
Array
(
[First] => CSE
[Second] => ECE
[Third] => EE
[Fourth] => Mechanical
)
参考: https://www. PHP.net/manual/en/reflectionclass.getconstants。 PHP