PHP 8.4.2 Released!

ReflectionConstant::getNamespaceName

(PHP 8 >= 8.4.0)

ReflectionConstant::getNamespaceNameGets namespace name

Beschreibung

public ReflectionConstant::getNamespaceName(): string

Gets the namespace name of the constant.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

The namespace name, or an empty string for the global namespace.

Beispiele

Beispiel #1 ReflectionConstant::getNamespaceName() example

<?php
namespace Foo {
const
BAR = 'bar';
var_dump((new \ReflectionConstant('Foo\BAR'))->getNamespaceName());
}

namespace {
const
BAR = 'bar';
var_dump((new \ReflectionConstant('BAR'))->getNamespaceName());
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

string(3) "Foo"
string(0) ""
add a note

User Contributed Notes

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