(PHP 5)
ReflectionFunctionAbstract::isDeprecated — Checks if deprecated
Checks whether the function is deprecated.
Questa funzione non contiene parametri.
TRUE
if it's deprecated, otherwise FALSE
Example #1 ReflectionFunctionAbstract::isDeprecated() example
<?php
$rf = new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>
Il precedente esempio visualizzerĂ :
bool(true)