PHP 8.4.2 Released!

ReflectionConstant::getName

(PHP 8 >= 8.4.0)

ReflectionConstant::getNameGets name

Beschreibung

public ReflectionConstant::getName(): string

Gets the name of the constant.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

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

Beispiele

Beispiel #1 ReflectionConstant::getName() example

<?php
namespace Foo;

const
BAR = 'bar';

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Foo\BAR

Siehe auch

add a note

User Contributed Notes

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