Rumah  >  Artikel  >  pembangunan bahagian belakang  >  PHP 5.3 特性:命名空间_PHP教程

PHP 5.3 特性:命名空间_PHP教程

WBOY
WBOYasal
2016-07-21 14:52:56790semak imbas

PHP 5.3 的一个新的重要特性就是 命名空间(namespace)。
这一特性在 PHP5.0x 时候就提出过,后来被取消并安排在 PHP6 中实现。而此次又再次“提前”到了 PHP 5.3 发布,可见开发人员对其的重视以及谨慎的态度。

官方发布时说明文档的内容可能已过期(documentation maybe out dated),所以在这里简单的说明命名空间的用法:首先是声明一个命名空间,加入了新的关键字 namespace ,其应在类文件的开头

12345678      
<span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)"><?php </SPAN>    namespace Project<span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">Module</span><span style="COLOR: rgb(51,153,51)">;</span> <span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">class</span> User <span style="COLOR: rgb(0,153,0)">{</span>  <span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">const</span> STATUS_OK <span style="COLOR: rgb(51,153,51)">=</span> <span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">true</span><span style="COLOR: rgb(51,153,51)">;</span> <span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">function</span> register<span style="COLOR: rgb(0,153,0)">(</span><span style="COLOR: rgb(0,0,136)">$data</span><span style="COLOR: rgb(0,153,0)">)</span> <span style="COLOR: rgb(0,153,0)">{</span> <span style="COLOR: rgb(51,153,51)">...</span>  <span style="COLOR: rgb(0,153,0)">}</span> <span style="COLOR: rgb(51,153,51)">...</span> <span style="COLOR: rgb(0,153,0)">}</span>      <span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">?></span></span>

然后在控制器中(可能是其他文件)就可以这样调用

12      
<span style="COLOR: rgb(0,0,136)">$user</span> <span style="COLOR: rgb(51,153,51)">=</span> <span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">new</span> Project<span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">Module</span><span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">User</span><span style="COLOR: rgb(0,153,0)">(</span><span style="COLOR: rgb(0,153,0)">)</span><span style="COLOR: rgb(51,153,51)">;</span>          <span style="COLOR: rgb(0,0,136)">$user</span><span style="COLOR: rgb(51,153,51)">-></span><span style="COLOR: rgb(0,64,0)">register</span><span style="COLOR: rgb(0,153,0)">(</span><span style="COLOR: rgb(0,0,136)">$register_info</span><span style="COLOR: rgb(0,153,0)">)</span><span style="COLOR: rgb(51,153,51)">;</span>

的确与平常的并无两样,但是我们可以将两个相互独立的类联系起来。比如

12      
Project<span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">Module</span><span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">User</span><span style="COLOR: rgb(51,153,51)">;</span>          Project<span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">Module</span><span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">Blog</span><span style="COLOR: rgb(51,153,51)">;</span>

这样就能从语言本身更容易描述和理解变量、类之间的关系,从而避免了“传统”上的 Project_Module_Blog 这样冗长的命名方式。
上面的说明可能很难说明使用命名空间带来了什么好处,新增加的 use 和 as 关键字或许能更好的说明问题。use 和 as 语句可以引用和声明 命名空间的“别名”。比如,上述的控制器中实例化类的代码可以这样写

123      
use Project<span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">Module</span><span style="COLOR: rgb(51,153,51)">;</span>    <span style="COLOR: rgb(0,0,136)">$user</span> <span style="COLOR: rgb(51,153,51)">=</span> <span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">new</span> Module<span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">User</span><span style="COLOR: rgb(0,153,0)">(</span><span style="COLOR: rgb(0,153,0)">)</span><span style="COLOR: rgb(51,153,51)">;</span>       <span style="COLOR: rgb(0,0,136)">$user</span><span style="COLOR: rgb(51,153,51)">-></span><span style="COLOR: rgb(0,64,0)">register</span><span style="COLOR: rgb(0,153,0)">(</span><span style="COLOR: rgb(0,0,136)">$register_info</span><span style="COLOR: rgb(0,153,0)">)</span><span style="COLOR: rgb(51,153,51)">;</span>

甚至

123      
use Project<span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">Module</span><span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">User</span> <span style="COLOR: rgb(177,177,0)">as</span> ModuleUser<span style="COLOR: rgb(51,153,51)">;</span>    <span style="COLOR: rgb(0,0,136)">$user</span> <span style="COLOR: rgb(51,153,51)">=</span> <span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">new</span> ModuleUser<span style="COLOR: rgb(51,153,51)">;</span>       <span style="COLOR: rgb(0,0,136)">$user</span><span style="COLOR: rgb(51,153,51)">-></span><span style="COLOR: rgb(0,64,0)">register</span><span style="COLOR: rgb(0,153,0)">(</span><span style="COLOR: rgb(0,0,136)">$register_info</span><span style="COLOR: rgb(0,153,0)">)</span><span style="COLOR: rgb(51,153,51)">;</span>

类中的常量也可以通过命名空间访问,比如上述类中的 STATUS_OK 就可以通过命名空间

1      
Project<span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">Module</span><span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">User</span><span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">STATUS_OK</span>

访问。进一步的,也可以用别名简化那么长的“变量名称”

12      
use Project<span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">Module</span><span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">User</span><span style="COLOR: rgb(51,153,51)">::</span><span style="COLOR: rgb(0,64,0)">STATUS_OK</span> as STATUS_OK;          echo STATUS_OK;

顺便提下“超空间(The Global Namespace)”的概念。所谓的“超空间”,就是没有指定命名空间的变量、类和函数。比如

123      
<span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">function</span> foo<span style="COLOR: rgb(0,153,0)">(</span><span style="COLOR: rgb(0,153,0)">)</span> <span style="COLOR: rgb(0,153,0)">{</span>    <span style="COLOR: rgb(51,153,51)">...</span>       <span style="COLOR: rgb(0,153,0)">}</span>

这的函数,可以使用 foo() 执行的同时,也可以使用 ::foo(); 这样执行。

最后,配合使用 autoload 函数即可载入指定命名空间的类。简单的函数如下

12345      
<span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">function</span> __autoload<span style="COLOR: rgb(0,153,0)">(</span> <span style="COLOR: rgb(0,0,136)">$classname</span> <span style="COLOR: rgb(0,153,0)">)</span> <span style="COLOR: rgb(0,153,0)">{</span>    <span style="COLOR: rgb(0,0,136)">$classname</span> <span style="COLOR: rgb(51,153,51)">=</span> <span style="COLOR: rgb(153,0,0)">strtolower</span><span style="COLOR: rgb(0,153,0)">(</span> <span style="COLOR: rgb(0,0,136)">$classname</span> <span style="COLOR: rgb(0,153,0)">)</span><span style="COLOR: rgb(51,153,51)">;</span> <span style="COLOR: rgb(0,0,136)">$classname</span> <span style="COLOR: rgb(51,153,51)">=</span> <span style="COLOR: rgb(153,0,0)">str_replace</span><span style="COLOR: rgb(0,153,0)">(</span> <span style="COLOR: rgb(0,0,255)">'::'</span><span style="COLOR: rgb(51,153,51)">,</span> DIRECTORY_SEPARATOR<span style="COLOR: rgb(51,153,51)">,</span> <span style="COLOR: rgb(0,0,136)">$classname</span> <span style="COLOR: rgb(0,153,0)">)</span><span style="COLOR: rgb(51,153,51)">;</span> <span style="COLOR: rgb(177,177,0)">require_once</span><span style="COLOR: rgb(0,153,0)">(</span> <span style="COLOR: rgb(153,0,0)">dirname</span><span style="COLOR: rgb(0,153,0)">(</span> <span style="FONT-WEIGHT: bold; COLOR: rgb(0,0,0)">__FILE__</span> <span style="COLOR: rgb(0,153,0)">)</span> <span style="COLOR: rgb(51,153,51)">.</span> <span style="COLOR: rgb(0,0,255)">'/'</span> <span style="COLOR: rgb(51,153,51)">.</span> <span style="COLOR: rgb(0,0,136)">$classname</span> <span style="COLOR: rgb(51,153,51)">.</span> <span style="COLOR: rgb(0,0,255)">'.class.php'</span> <span style="COLOR: rgb(0,153,0)">)</span><span style="COLOR: rgb(51,153,51)">;</span>       <span style="COLOR: rgb(0,153,0)">}</span>

这样,比如调用

1      
__autoload<span style="COLOR: rgb(0,153,0)">(</span><span style="COLOR: rgb(0,0,255)">'Project::Module::User'</span><span style="COLOR: rgb(0,153,0)">)</span><span style="COLOR: rgb(51,153,51)">;</span>

就可以自动载入 Project_Module_User.class.php 文件

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/371510.htmlTechArticlePHP 5.3 的一个新的重要特性就是 命名空间(namespace)。 这一特性在 PHP5.0x 时候就提出过,后来被取消并安排在 PHP6 中实现。而此次又再次“...
Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn