(PHP 5 >= 5.2.0, PHP 7)
ReflectionFunctionAbstract::isDeprecated — Checks if deprecated
Checks whether the function is deprecated.
Această funcție nu are parametri.
true
if it's deprecated, otherwise false
Example #1 ReflectionFunctionAbstract::isDeprecated() example
<?php
$rf = new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>
Exemplul de mai sus va afișa:
bool(true)