(PHP 5 >= 5.2.0, PHP 7, PHP 8)
ReflectionFunctionAbstract::isDeprecated — Checks if deprecated
Checks whether the function is deprecated.
У цієї функції немає параметрів.
Приклад #1 ReflectionFunctionAbstract::isDeprecated() example
<?php
$rf = new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>
Поданий вище приклад виведе:
bool(true)