ReflectionEnumBackedCase::getBackingValue

(PHP 8 >= 8.1.0)

ReflectionEnumBackedCase::getBackingValueBacked Enum の case が持つスカラー値を取得する

説明

public ReflectionEnumBackedCase::getBackingValue(): int|string

Backed Enum の case が持つスカラー値を取得します。

パラメータ

この関数にはパラメータはありません。

戻り値

この列挙型の case が持つスカラーの値を返します。

例1 ReflectionEnum::getBackingValue() の例

<?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 add a note

User Contributed Notes

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