ReflectionConstant::isDeprecated

Checks if deprecated

Description

public bool ReflectionConstant::isDeprecated()

Checks whether the constant is deprecated.

Parameters

This function has no parameters.

Return Values

true if it's deprecated, otherwise false

Examples

Example #1 ReflectionConstant::isDeprecated example

<?php
// E_STRICT is deprecated as of PHP 8.4
var_dump((new ReflectionConstant('E_STRICT'))->isDeprecated());
?>

Output of the above example in PHP 8.4:

bool(true)