CakeFest 2024: The Official CakePHP Conference

ReflectionEnumBackedCase::getBackingValue

(PHP 8 >= 8.1.0)

ReflectionEnumBackedCase::getBackingValueGets the scalar value backing this Enum case

Description

public ReflectionEnumBackedCase::getBackingValue(): int|string

Gets the scalar value backing this Enum case.

Parameters

This function has no parameters.

Return Values

The scalar equivalent of this enum case.

Examples

Example #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());
?>

The above example will output:

string(1) "S"

See Also

add a note

User Contributed Notes

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