suche nach in der

ReflectionFunctionAbstract::isInternal> <ReflectionFunctionAbstract::isClosure
Last updated: Fri, 25 May 2012

view this page in

ReflectionFunctionAbstract::isDeprecated

(PHP 5)

ReflectionFunctionAbstract::isDeprecatedChecks if deprecated

Beschreibung

public bool ReflectionFunctionAbstract::isDeprecated ( void )

Checks whether the function is deprecated.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

TRUE if it's deprecated, otherwise FALSE

Beispiele

Beispiel #1 ReflectionFunctionAbstract::isDeprecated() example

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

bool(true)

Siehe auch



add a note add a note User Contributed Notes
ReflectionFunctionAbstract::isDeprecated
There are no user contributed notes for this page.