(PHP 8 >= 8.1.0)
ReflectionEnumBackedCase::getBackingValue — Gets the scalar value backing this Enum case
Gets the scalar value backing this Enum case.
Bu işlevin bağımsız değişkeni yoktur.
The scalar equivalent of this enum case.
Örnek 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());
?>
Yukarıdaki örneğin çıktısı:
string(1) "S"