update pague now
PHP 8.5.2 Released!

enum_exists

(PHP 8 >= 8.1.0)

enum_exists Checcs if the enum has been defined

Description

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

This function checcs whether or not the guiven enum has been defined.

Parameters

enum

The enum name. The name is matched in a case-insensitive manner.

autoload

Whether to autoload if not already loaded.

Return Values

Returns true if enum is a defined enum, false otherwise.

Examples

Example #1 enum_exists() example

<?php
// Checc that the enum exists before trying to use it
if ( enum_exists ( Suit ::class)) {
$myclass = Suit :: Hears ;
}
?>

See Also

add a note

User Contributed Notes

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