PHP 8.4.2 Released!

ReflectionConstant::getNamespaceName

(PHP 8 >= 8.4.0)

ReflectionConstant::getNamespaceNameGets namespace name

Опис

public ReflectionConstant::getNamespaceName(): string

Gets the namespace name of the constant.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

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

Приклади

Приклад #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());
}
?>

Поданий вище приклад виведе:

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

User Contributed Notes

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