ReflectionConstant::getName
PHP Manual
PHP Manual»ReflectionConstant»ReflectionConstant::getName

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

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

To Top