ReflectionClass::hasConstant

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

ReflectionClass::hasConstant检查是否定义了常量

描述

public ReflectionClass::hasConstant(string $name): bool

检查类是否定义了特定的常量。

参数

name

要检查的常量的名称。

返回值

如果定义了常量则返回 true,否则返回 false

示例

示例 #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)

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top