PHP 8.4.3 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

参见

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top