ReflectionFunctionAbstract::isDeprecated
(PHP 5 >= 5.2.0, PHP 7)
ReflectionFunctionAbstract::isDeprecated — Checks if deprecated
Description
public bool ReflectionFunctionAbstract::isDeprecated ( void )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
← ReflectionFunctionAbstract::isClosure
ReflectionFunctionAbstract::isGenerator →
© 1997–2017 The PHP Documentation GroupLicensed under the Creative Commons Attribution License v3.0 or later.
本文档系腾讯云开发者社区成员共同维护,如有问题请联系 cloudcommunity@tencent.com

