parent root
PHP: ReflectionFunctionAbstract::isDeprecated - Manual

ReflectionFunctionAbstract::isDeprecated

(PHP 5 >= 5.2.0, PHP 7)

ReflectionFunctionAbstract::isDeprecatedChecks if deprecated

Description

public ReflectionFunctionAbstract::isDeprecated ( void ) : 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

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.
To Top
parent root