ReflectionConstant::getName
PHP function
Edit on GitHub ✎
(PHP 8 >= 8.4.0)
Gets name
Description
ReflectionConstant::getName(): string
Gets the name of the constant.
Parameters Parameters
Return Values
The constants name, which is composed of its namespace and name.
Examples
ReflectionConstant::getName example
php
<?php
namespace Foo;
const BAR = 'bar';
echo (new \ReflectionConstant('Foo\BAR'))->getName();
?>The above example will output:
output
Foo\BARSee Also
ReflectionConstant::getNamespaceName