PHP 8.4.0 RC4 available for testing

ReflectionClassConstant::isDeprecated

(PHP 8 >= 8.4.0)

ReflectionClassConstant::isDeprecatedChecks if deprecated

Descripción

public ReflectionClassConstant::isDeprecated(): bool

Checks whether the class constant is deprecated.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

true if it's deprecated, otherwise false

Ejemplos

Ejemplo #1 ReflectionClassConstant::isDeprecated() example

<?php
class Basket {
#[
\Deprecated(message: 'use Basket::APPLE instead')]
public const
APLE = 'apple';

public const
APPLE = 'apple';
}
$classConstant = new ReflectionClassConstant('Basket', 'APLE');
var_dump($classConstant->isDeprecated());
?>

El resultado del ejemplo sería:

bool(true)

Ver también

add a note

User Contributed Notes

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