ReflectionFunctionAbstract::isDeprecated

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

ReflectionFunctionAbstract::isDeprecatedChecks if deprecated

Descrição

public ReflectionFunctionAbstract::isDeprecated(): bool

Checks whether the function is deprecated.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

true if it's deprecated, otherwise false

Exemplos

Exemplo #1 ReflectionFunctionAbstract::isDeprecated() example

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

O exemplo acima produzirá:

bool(true)

Veja Também

add a note add a note

User Contributed Notes

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