(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)