命名空间
在线手册:中文  英文

定义子命名空间

与目录和文件的关系很象,PHP 命名空间也允许指定层次化的命名空间的名称。因此,命名空间的名字可以使用分层次的方式定义:

Example #1 声明分层次的单个命名空间

<?php
namespace MyProject\Sub\Level;

const 
CONNECT_OK 1;
class 
Connection /* ... */ }
function 
connect() { /* ... */  }

?>
上面的例子创建了常量MyProject\Sub\Level\CONNECT_OK,类 MyProject\Sub\Level\Connection和函数 MyProject\Sub\Level\Connection


命名空间
在线手册:中文  英文

用户评论:

AmitU (2013-03-08 15:24:48)

Note that constant in the example will be global and not in the namespace only.
To do it in the namespace only put the namespace path in the definition

易百教程