与目录和文件的关系很象,PHP 命名空间也允许指定层次化的命名空间的名称。因此,命名空间的名字可以使用分层次的方式定义:
Example #1 声明分层次的单个命名空间
<?php
namespace MyProject\Sub\Level;
const CONNECT_OK = 1;
class Connection { /* ... */ }
function connect() { /* ... */ }
?>
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