enum_exists

(PHP 8 >= 8.1.0)

enum_exists检测是否定义对应的枚举

说明

enum_exists(string $enum, bool $autoload = true): bool

本函数检测是否定义指定的枚举

参数

enum

枚举的名称。名称的匹配不区分大小写。

autoload

如果尚未加载,是否自动加载

返回值

如果 enum 已定义,返回 true,否则就返回 false

示例

示例 #1 enum_exists() 示例

<?php
// 在使用之前检测枚举是否存在
if (enum_exists(Suit::class)) {
$myclass = Suit::Hearts;
}
?>

参见

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top