(PHP 8 >= 8.4.0)
ReflectionConstant::getName — Gets name
public ReflectionConstant::getName(): string
Gets the name of the constant.
This function has no parameters.
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();
?> The above example will output:
Foo\BAR
© 1997–2025 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/reflectionconstant.getname.php