PHP 8.4.24 Released!

ReflectionConstant::getName

(PHP 8 >= 8.4.0)

ReflectionConstant::getNameGets name

Опис

public function ReflectionConstant::getName(): string

Gets the name of the constant.

Параметри

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

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

The constants name, which is composed of its namespace and name.

Приклади

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

<?php
namespace Foo;

const BAR = 'bar';

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

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

Foo\BAR

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

add a note

User Contributed Notes

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