php8.5
Home/ Manual/ reflection / reflectionconstant/ ReflectionConstant::getName

ReflectionConstant::getName

PHP function Edit on GitHub ✎

(PHP 8 >= 8.4.0)

Gets name

Description

ReflectionConstant::getName(): string

Gets the name of the constant.

Parameters Parameters

Return Values

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

Examples

ReflectionConstant::getName example

php
<?php
namespace Foo;

const BAR = 'bar';

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

The above example will output:

output
Foo\BAR

See Also

  • ReflectionConstant::getNamespaceName

Source: reference/reflection/reflectionconstant/getname.xml · from the official PHP manual (php/doc-en)