(PHP 8 >= 8.4.0)
ReflectionConstant::getValue — Gets value
Bu işlevin bağımsız değişkeni yoktur.
The value of the constant.
Örnek 1 ReflectionProperty::getValue() example
<?php
const FOO = 'foo';
var_dump((new \ReflectionConstant('FOO'))->getValue());
?>
Yukarıdaki örneğin çıktısı:
string(3) "foo"