(PHP 8 >= 8.4.0)
ReflectionConstant::getNamespaceName — Gets namespace name
У цієї функції немає параметрів.
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) ""