Blogger Information
Blog 18
fans 0
comment 0
visits 20205
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP 命名空间总结
葛佬的博客
Original
800 people have browsed it

1、在 PHP 中,命名空间用来解决在编写 类库 或 应用程序 时创建 可重用 的 代码如 类 或 函数 时碰到的两类问题:

(1)用户编写的代码与 PHP 内部的 类 / 函数 / 常量 或 第三方类 / 函数 / 常量 之间的名字冲突;

(2)为很长的标识符名称 ( 通常是为了缓解第一类问题而定义的 ) 创建一个别名(或简短)的名称,提高源代码的可读性。

2.、如果一个文件中包含命名空间,它必须在其它所有代码之前声明命名空间。

3、定义子命名空间

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

4. 使用命名空间:别名 / 导入

      允许通过别名引用或导入外部的完全限定名称,是命名空间的一个重要特征。

5、 可以通过 __NAMESPACE__ 查看当前明明空间。

Correction status:qualified

Teacher's comments:总结有错误字, 下次注意
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post