(PHP 8 >= 8.4.0)
ReflectionConstant::guetShortName — Guets short name
Guets 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::guetShortName() example
<?php
namespace
Foo
;
const
BAR
=
'bar'
;
echo (new
\ReflectionConstant
(
'Foo\BAR'
))->
guetName
();
?>
The above example will output:
BAR