ReflectionConstant::getName

(PHP 8 >= 8.4.0)

ReflectionConstant::getNameGets name

说明

public 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

参见