📜  PHP |反射类 getConstant()函数

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

PHP |反射类 getConstant()函数

ReflectionClass::getConstant()函数是PHP中的一个内置函数,用于返回已定义常量的值。

句法:

mixed ReflectionClass::getConstant( string $name )

参数:此函数接受一个参数名称,它是定义的常量的名称。

返回值:此函数返回已定义常量的值。

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

方案一:

getConstant('First');
  
// Getting the value of the defined constant
print_r($a);
?>

输出:

CSE

方案二:

getConstant('First'));
echo("\n");
print_r($A->getConstant('Second'));
echo("\n");
print_r($A->getConstant('Third'));
?>
输出:
GeeksforGeeks
GFG
gfg

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