ReflectionEnum::hasCase
(PHP 8 >= 8.1.0)
ReflectionEnum::hasCase — 列挙型が case を持つかを調べる
パラメータ
name
-
調べる case の名前。
例
例1 ReflectionEnum::hasCase() の例
<?php
enum Suit
{
case Hearts;
case Diamonds;
case Clubs;
case Spades;
}
$rEnum = new ReflectionEnum(Suit::class);
var_dump($rEnum->hasCase('Hearts'));
var_dump($rEnum->hasCase('Horseshoes'));
?>
上の例の出力は以下となります。
bool(true) bool(false)
参考
- 列挙型(Enum)
- ReflectionEnum::getCase() - 列挙型の特定の case を返す
- ReflectionEnum::getCases() - 列挙型の全ての case を返す
+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