ReflectionFunctionAbstract::isDeprecated

(PHP 5)

ReflectionFunctionAbstract::isDeprecatedChecks if deprecated

Beskrivelse

public bool ReflectionFunctionAbstract::isDeprecated ( void )

Checks whether the function is deprecated.

Parametre

This function has no parameters.

Returnerings Værdier

TRUE if it's deprecated, otherwise FALSE

Eksempler

Eksempel #1 ReflectionFunctionAbstract::isDeprecated() example

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

The above example will output:

bool(true)

Se også

add a note add a note

User Contributed Notes

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