PHP Conference Nagoya 2025

ReflectionConstant::getName

(PHP 8 >= 8.4.0)

ReflectionConstant::getNameGets name

Description

public ReflectionConstant::getName(): string

Gets the name of the constant.

Parameters

This function has no parameters.

Return Values

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

Examples

Example #1 ReflectionConstant::getName() example

<?php
namespace Foo;

const
BAR = 'bar';

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

The above example will output:

Foo\BAR

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top