ReflectionConstant::getShortName
(PHP 8 >= 8.4.0)
ReflectionConstant::getShortName — Gets short name
Description
Gets the short name of the constant, the part without the namespace.
Parameters
This function has no parameters.
Return Values
The short name of the constant.
Examples
Example #1 ReflectionConstant::getShortName() example
<?php
namespace Foo;
const BAR = 'bar';
echo (new \ReflectionConstant('Foo\BAR'))->getName();
?>The above example will output:
BAR
See Also
- ReflectionConstant::getName() - Gets name
↑ and ↓ to navigate • Enter to select • Esc to close • / to open