ReflectionEnumBackedCase::getBackingValue
(PHP 8 >= 8.1.0)
ReflectionEnumBackedCase::getBackingValue — Backed Enum の case が持つスカラー値を取得する
説明
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
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google