PHP 8.4.2 Released!

ReflectionConstant::getShortName

(PHP 8 >= 8.4.0)

ReflectionConstant::getShortNameGets short name

Опис

public ReflectionConstant::getShortName(): string

Gets the short name of the constant, the part without the namespace.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

The short name of the constant.

Приклади

Приклад #1 ReflectionConstant::getShortName() example

<?php
namespace Foo;

const
BAR = 'bar';

echo (new
\ReflectionConstant('Foo\BAR'))->getName();
?>

Поданий вище приклад виведе:

BAR

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top