(PHP 8 >= 8.4.0)
ReflectionConstant::getValue — Gets value
Esta função não possui parâmetros.
The value of the constant.
Exemplo #1 ReflectionProperty::getValue() example
<?php
const FOO = 'foo';
var_dump((new \ReflectionConstant('FOO'))->getValue());
?>
O exemplo acima produzirá:
string(3) "foo"