ReflectionFunctionAbstract
PHP Manual

ReflectionFunctionAbstract::isDeprecated

(PHP 5)

ReflectionFunctionAbstract::isDeprecatedChecks 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)

Vedere anche:


ReflectionFunctionAbstract
PHP Manual