(PHP 8 >= 8.1.0)
ReflectionEnumUnitCase::getValue — 获取此反射对象描述的枚举情况对象
此函数没有参数。
此反射对象描述的枚举情况对象。
示例 #1 ReflectionEnum::getValue() 示例
<?php
enum Suit
{
case Hearts;
case Diamonds;
case Clubs;
case Spades;
}
$rEnum = new ReflectionEnum(Suit::class);
$rCase = $rEnum->getCase('Diamonds');
var_dump($rCase->getValue());
?>
上面的示例将输出
enum(Suit::Diamonds)