PHP 8.4.3 Released!

ReflectionConstant::isDeprecated

(PHP 8 >= 8.4.0)

ReflectionConstant::isDeprecatedChecks if deprecated

说明

public ReflectionConstant::isDeprecated(): bool

Checks whether the constant is deprecated.

参数

此函数没有参数。

返回值

true if it's deprecated, otherwise false

示例

示例 #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)
添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top