ReflectionClass::hasConstant
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
ReflectionClass::hasConstant — 检查常量是否已经定义
参数
name
-
要被检查的常量名称。
示例
示例 #1 ReflectionClass::hasConstant() 示例
<?php
class Foo {
const c1 = 1;
}
$class = new ReflectionClass("Foo");
var_dump($class->hasConstant("c1"));
var_dump($class->hasConstant("c2"));
?>
以上示例的输出类似于:
bool(true) bool(false)
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/reflectionclass.hasconstant.php