(PHP 5, PHP 7)
ReflectionFunctionAbstract::isDeprecated — 检查是否已经弃用
检查函数是否已经被弃用
此函数没有参数。
弃用返回 TRUE
,否则返回 FALSE
Example #1 ReflectionFunctionAbstract::isDeprecated() example
<?php
$rf = new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>
以上例程会输出:
bool(true)