略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: ReflectionClass::hasConstant

2024-04-27

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)

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/reflectionclass.hasconstant.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3