📜  PHP | ReflectionClass hasConstant()函数

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

PHP | ReflectionClass hasConstant()函数

ReflectionClass::hasConstant()函数是PHP中的一个内置函数,用于检查指定的常量是否存在。

句法:

bool ReflectionClass::hasConstant( string $name )

参数:此函数接受单个参数$name ,其中包含已定义常量的名称。

返回值:如果定义了常量,此函数返回 TRUE,否则返回 FALSE。

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

方案一:

hasConstant("c1");
  
// Getting the value TRUE or FALSE
var_dump($const);
?>
输出:
bool(true)

方案二:

hasConstant("c1"));
?>
输出:
bool(false)

参考: https://secure。 PHP.net/manual/en/reflectionclass.hasconstant。 PHP