(PHP 8 >= 8.4.0)
ReflectionConstant::getValue — Gets value
Diese Funktion besitzt keine Parameter.
The value of the constant.
Beispiel #1 ReflectionProperty::getValue() example
<?php
const FOO = 'foo';
var_dump((new \ReflectionConstant('FOO'))->getValue());
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
string(3) "foo"