(PHP 8 >= 8.4.0)
ReflectionConstant::isDeprecated — 检查是否已弃用
检查常量是否已弃用。
此函数没有参数。
如果已弃用,则返回true,否则返回false
true
false
示例 #1 ReflectionConstant::isDeprecated() 示例
<?php// E_STRICT 从 PHP 8.4 开始已弃用var_dump((new ReflectionConstant('E_STRICT'))->isDeprecated());?>
PHP 8.4 中上述示例的输出
bool(true)