(PHP 8 >= 8.4.0)
ReflectionConstant::getShortName — Gets short name
public ReflectionConstant::getShortName(): string
Gets the short name of the constant, the part without the namespace.
This function has no parameters.
The short name of the constant.
Example #1 ReflectionConstant::getShortName() example
<?php
namespace Foo;
const BAR = 'bar';
echo (new \ReflectionConstant('Foo\BAR'))->getName();
?> The above example will output:
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.getshortname.php