(PHP 8 >= 8.4.0)
ReflectionConstant::getName — Gets name
Questa funzione non contiene parametri.
The constants name, which is composed of its namespace and name.
Example #1 ReflectionConstant::getName() example
<?php
namespace Foo;
const BAR = 'bar';
echo (new \ReflectionConstant('Foo\BAR'))->getName();
?>
Il precedente esempio visualizzerà:
Foo\BAR