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