mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
14 lines
241 B
PHP
14 lines
241 B
PHP
--TEST--
|
|
ReflectionConstant::isDeprecated() from attribute
|
|
--FILE--
|
|
<?php
|
|
|
|
#[Deprecated]
|
|
const CT_CONST = 42;
|
|
$reflectionConstant = new ReflectionConstant('CT_CONST');
|
|
var_dump($reflectionConstant->isDeprecated());
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|