PHP 8.4.2 Released!

ReflectionConstant::getShortName

(PHP 8 >= 8.4.0)

ReflectionConstant::getShortNameGets short name

Beschreibung

public ReflectionConstant::getShortName(): string

Gets the short name of the constant, the part without the namespace.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

The short name of the constant.

Beispiele

Beispiel #1 ReflectionConstant::getShortName() example

<?php
namespace Foo;

const
BAR = 'bar';

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

BAR

Siehe auch

add a note

User Contributed Notes

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