(PHP 8 >= 8.1.0)
ReflectionEnumBackedCase::getBackingValue — Gets the scalar value backing this Enum case
Gets the scalar value backing this Enum case.
This function has no parameters.
The scalar equivalent of this enum case.
Example #1 ReflectionEnum::getBackingValue() example
<?phpenum 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());?>
The above example will output:
string(1) "S"