ReflectionFunctionAbstract::isDeprecated

(PHP 5 >= 5.2.0, PHP 7)

ReflectionFunctionAbstract::isDeprecatedChecks if deprecated

Descrierea

public ReflectionFunctionAbstract::isDeprecated ( ) : bool

Checks whether the function is deprecated.

Parametri

Această funcție nu are parametri.

Valorile întoarse

true if it's deprecated, otherwise false

Exemple

Example #1 ReflectionFunctionAbstract::isDeprecated() example

<?php
$rf 
= new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>

Exemplul de mai sus va afișa:

bool(true)

A se vedea și

add a note add a note

User Contributed Notes

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