(PHP 8 >= 8.4.0)
ReflectionConstant::getShortName — Gets short name
Gets the short name of the constant, the part without the namespace.
Bu işlevin bağımsız değişkeni yoktur.
The short name of the constant.
Örnek 1 ReflectionConstant::getShortName() example
<?php
namespace Foo;
const BAR = 'bar';
echo (new \ReflectionConstant('Foo\BAR'))->getName();
?>
Yukarıdaki örneğin çıktısı:
BAR