(PHP 8 >= 8.4.0)
ReflectionConstant::getName — Gets name
У цієї функції немає параметрів.
The constants name, which is composed of its namespace and name.
Приклад #1 ReflectionConstant::getName() example
<?php
namespace Foo;
const BAR = 'bar';
echo (new \ReflectionConstant('Foo\BAR'))->getName();
?>
Поданий вище приклад виведе:
Foo\BAR