(PHP 5 >= 5.3.0, PHP 7)
PHP֧�����ֳ���ķ��ʵ�ǰ�����ռ��ڲ�Ԫ�صķ�����__NAMESPACE__
ħ��������namespace�ؼ��֡�
����__NAMESPACE__
��ֵ�ǰ�����ǰ�����ռ����Ƶ��ַ�������ȫ�ֵģ����������κ������ռ��еĴ��룬������һ���յ��ַ�����
Example #1 __NAMESPACE__ ʾ��, �������ռ��еĴ���
<?php
namespace MyProject;
echo '"', __NAMESPACE__, '"'; // ��� "MyProject"
?>
Example #2 __NAMESPACE__ ʾ����ȫ�ִ���
<?php
echo '"', __NAMESPACE__, '"'; // ��� ""
?>
__NAMESPACE__
�ڶ�̬��������ʱ�����ã����磺
Example #3 ʹ��__NAMESPACE__��̬��������
<?php
namespace MyProject;
function get($classname)
{
$a = __NAMESPACE__ . '\\' . $classname;
return new $a;
}
?>
�ؼ��� namespace ��������ʽ���ʵ�ǰ�����ռ���������ռ��е�Ԫ�ء����ȼ������е� self ��������
Example #4 namespace�������������ռ��еĴ���
<?php
namespace MyProject;
use blah\blah as mine; // see "Using namespaces: importing/aliasing"
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
?>
Example #5 namespace������, ȫ�ִ���
<?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
?>