Dutch PHP Conference 2025 - Call For Papers

ReflectionEnumBackedCase::getBackingValue

(PHP 8 >= 8.1.0)

ReflectionEnumBackedCase::getBackingValueGets the scalar value backing this Enum case

Опис

public ReflectionEnumBackedCase::getBackingValue(): int|string

Gets the scalar value backing this Enum case.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

The scalar equivalent of this enum case.

Приклади

Приклад #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());
?>

Поданий вище приклад виведе:

string(1) "S"

Прогляньте також

add a note

User Contributed Notes

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