ReflectionClassConstant::isDeprecated
(PHP 8 >= 8.4.0)
ReflectionClassConstant::isDeprecated — クラス定数が非推奨かどうかを調べる
パラメータ
この関数にはパラメータはありません。
例
例1 ReflectionClassConstant::isDeprecated() の例
<?php
class Basket {
#[\Deprecated(message: 'use Basket::APPLE instead')]
public const APLE = 'apple';
public const APPLE = 'apple';
}
$classConstant = new ReflectionClassConstant('Basket', 'APLE');
var_dump($classConstant->isDeprecated());
?>
上の例の出力は以下となります。
bool(true)
参考
- Deprecated
- ReflectionClassConstant::getDocComment() - クラス定数のドキュメントコメントを取得する
+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