ReflectionFunctionAbstract::isDeprecated
Checks if deprecated
Description
public bool ReflectionFunctionAbstract::isDeprecated()
Parameters
This function has no parameters.
Return Values
true
if it's deprecated, otherwise false
Examples
Example #1
ReflectionFunctionAbstract::isDeprecated example
<?php
$rf = new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>
The above example will output:
See Also
- Deprecated
- ReflectionFunctionAbstract::getDocComment