(PHP 8 >= 8.4.0)
ReflectionConstant::getValue — Renvoie la valeur
Cette fonction ne contient aucun paramètre.
La valeur de la constante.
Exemple #1 Exmeple de ReflectionProperty::getValue()
<?php
const FOO = 'foo';
var_dump((new \ReflectionConstant('FOO'))->getValue());
?>
L'exemple ci-dessus va afficher :
string(3) "foo"