(PHP 5)
ReflectionFunctionAbstract::isDeprecated — Checks if deprecated
Checks whether the function is deprecated.
此函数没有参数。
TRUE
if it's deprecated, otherwise FALSE
Example #1 ReflectionFunctionAbstract::isDeprecated() example
<?php
$rf = new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>
以上例程会输出:
bool(true)