(PHP 5, PHP 7)
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)