(PHP 8 >= 8.4.0)
ReflectionConstant::getName — 获取名称
获取常量的名称。
此函数没有参数。
常量的名称,由其命名空间和名称组成。
示例 #1 ReflectionConstant::getName() 示例
<?phpnamespace Foo;const BAR = 'bar';echo (new \ReflectionConstant('Foo\BAR'))->getName();?>
以上示例将输出
Foo\BAR