ReflectionFunctionAbstract::isDeprecated
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
ReflectionFunctionAbstract::isDeprecated — Checks if deprecated
Description
Checks whether the function is deprecated.
Parameters
This function has no parameters.
Examples
Example #1 ReflectionFunctionAbstract::isDeprecated() example
<?php
$rf = new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>The above example will output:
bool(true)
See Also
- Deprecated
- ReflectionFunctionAbstract::getDocComment() - Gets doc comment
↑ and ↓ to navigate • Enter to select • Esc to close • / to open