PHP: Hypertext Preprocessor (original) (raw)

enum_exists

(PHP 8 >= 8.1.0)

enum_exists — Checks if the enum has been defined

Description

This function checks whether or not the given 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](reserved.constants.php#constant.true) if enum is a defined enum,[false](reserved.constants.php#constant.false) otherwise.

Examples

Example #1 enum_exists() example

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

See Also

Found A Problem?

There are no user contributed notes for this page.