ReflectionEnum::getCase

(PHP 8 >= 8.1.0)

ReflectionEnum::getCaseReturns a specific case of an Enum

Descrizione

public ReflectionEnum::getCase(string $name): ReflectionEnumUnitCase

Returns the reflection object for a specific Enum case by name. If the requested case is not defined, a ReflectionException is thrown.

Elenco dei parametri

name

The name of the case to retrieve.

Valori restituiti

An instance of ReflectionEnumUnitCase or ReflectionEnumBackedCase, as appropriate.

Esempi

Example #1 ReflectionEnum::getCase() example

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

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

$rCase = $rEnum->getCase('Clubs');

var_dump($rCase->getValue());
?>

Il precedente esempio visualizzerĂ :

enum(Suit::Clubs)

Vedere anche:

add a note add a note

User Contributed Notes

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