ReflectionEnumBackedCase::getBackingValue

(PHP 8 >= 8.1.0)

ReflectionEnumBackedCase::getBackingValue获取枚举条目回退的标量值

说明

public ReflectionEnumBackedCase::getBackingValue(): int|string

获取枚举条目回退的标量值。

参数

此函数没有参数。

返回值

枚举条目对应的标量值。

示例

示例 #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