(PHP 8 >= 8.4.0)
ReflectionClassConstant::isDeprecated — Checks if deprecated
Checks whether the class constant is deprecated.
この関数にはパラメータはありません。
例1 ReflectionClassConstant::isDeprecated() example
<?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)