(PHP 5, PHP 7)
ReflectionFunctionAbstract::isDeprecated — Checks if deprecated
Checks whether the function is deprecated.
Esta função não possui parâmetros.
TRUE
if it's deprecated, otherwise FALSE
Exemplo #1 ReflectionFunctionAbstract::isDeprecated() example
<?php
$rf = new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>
O exemplo acima irá imprimir:
bool(true)