(PHP 8 >= 8.4.0)
ReflectionConstant::isDeprecated — Checks if deprecated
此函数没有参数。
示例 #1 ReflectionConstant::isDeprecated() example
<?php
// E_STRICT is deprecated as of PHP 8.4
var_dump((new ReflectionConstant('E_STRICT'))->isDeprecated());
?>
以上示例在 PHP 8.4 中的输出:
bool(true)