ReflectionFunctionAbstract::isDeprecated
(PHP 5 >= 5.2.0, PHP 7)
ReflectionFunctionAbstract::isDeprecated — Checks if deprecated
Description
public ReflectionFunctionAbstract::isDeprecated ( ) : bool
Checks whether the function is deprecated.
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:
bool(true)
See Also
- ReflectionFunctionAbstract::getDocComment() - Gets doc comment
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/reflectionfunctionabstract.isdeprecated.php