ReflectionFunctionAbstract::isDeprecated
(PHP 5)
ReflectionFunctionAbstract::isDeprecated — Checks if deprecated
Descrizione
public bool ReflectionFunctionAbstract::isDeprecated
( void
)
Checks whether the function is deprecated.
Elenco dei parametri
Questa funzione non contiene parametri.
Valori restituiti
TRUE if it's deprecated, otherwise FALSE
Esempi
Example #1 ReflectionFunctionAbstract::isDeprecated() example
<?php
$rf = new ReflectionFunction('ereg');
var_dump($rf->isDeprecated());
?>
Il precedente esempio visualizzerĂ :
bool(true)
There are no user contributed notes for this page.
