ReflectionEnum::hasCase

(PHP 8 >= 8.1.0)

ReflectionEnum::hasCaseChecks for a case on an Enum

Descripción

public ReflectionEnum::hasCase(string $name): bool

Determines if a given case is defined on an Enum.

Parámetros

name

The case to check for.

Valores devueltos

true if the case is defined, false if not.

Ejemplos

Ejemplo #1 ReflectionEnum::hasCase() example

<?php
enum Suit
{
case
Hearts;
case
Diamonds;
case
Clubs;
case
Spades;
}

$rEnum = new ReflectionEnum(Suit::class);

var_dump($rEnum->hasCase('Hearts'));
var_dump($rEnum->hasCase('Horseshoes'));
?>

El resultado del ejemplo sería:

bool(true)
bool(false)

Ver también

add a note

User Contributed Notes

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