ReflectionEnumBackedCase::getBackingValue

(PHP 8 >= 8.1.0)

ReflectionEnumBackedCase::getBackingValueGets the scalar value backing this Enum case

Beschreibung

public ReflectionEnumBackedCase::getBackingValue(): int|string

Gets the scalar value backing this Enum case.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

The scalar equivalent of this enum case.

Beispiele

Beispiel #1 ReflectionEnum::getBackingValue() example

<?php
enum Suit: string
{
case
Hearts = 'H';
case
Diamonds = 'D';
case
Clubs = 'C';
case
Spades = 'S';
}

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

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

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

string(1) "S"

Siehe auch

add a note add a note

User Contributed Notes

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