PHP.nl

The namespace keyword and __NAMESPACE__ magic constant

The namespace keyword and NAMESPACE magic constant

PHP supports two ways of abstractly accessing elements within the current namespace, the magic constant, and the keyword. __NAMESPACE__``namespace

The value of is a string that contains the current namespace name. In global, un-namespaced code, it contains an empty string.

The constant is useful for dynamically constructing names, for instance:

__NAMESPACE__Voorbeeld: NAMESPACE example, namespaced code

<?php
namespace MyProject;

echo '"', __NAMESPACE__, '"'; // outputs "MyProject"
?>

Voorbeeld: NAMESPACE example, global code

<?php

echo '"', __NAMESPACE__, '"'; // outputs ""
?>

__NAMESPACE__Voorbeeld: using NAMESPACE for dynamic name construction

<?php
namespace MyProject;

function get($classname)
{
    $a = __NAMESPACE__ . '\\' . $classname;
    return new $a;
}
?>

The keyword can be used to explicitly request an element from the current namespace or a sub-namespace. It is the namespace equivalent of the operator for classes.

namespace``selfVoorbeeld: the namespace operator, inside a namespace

<?php
namespace MyProject;

use blah\blah as mine; // see "Using namespaces: Aliasing/Importing"

blah\mine(); // calls function MyProject\blah\mine()
namespace\blah\mine(); // calls function MyProject\blah\mine()

namespace\func(); // calls function MyProject\func()
namespace\sub\func(); // calls function MyProject\sub\func()
namespace\cname::method(); // calls static method "method" of class MyProject\cname
$a = new namespace\sub\cname(); // instantiates object of class MyProject\sub\cname
$b = namespace\CONSTANT; // assigns value of constant MyProject\CONSTANT to $b
?>

Voorbeeld: the namespace operator, in global code

<?php

namespace\func(); // calls function func()
namespace\sub\func(); // calls function sub\func()
namespace\cname::method(); // calls static method "method" of class cname
$a = new namespace\sub\cname(); // instantiates object of class sub\cname
$b = namespace\CONSTANT; // assigns value of constant CONSTANT to $b
?>

Documentatie