PHP学习笔记:对命名空间(namespace)学习资料的翻译

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP学习笔记:对命名空间(namespace)学习资料的翻译相关的知识,希望对你有一定的参考价值。

Name collisions means: 
 you create a function named db_connect, and somebody elses code that you use in your file (i.e. an include) has the same function with the same name.

 To get around that problem, you rename your function SteveWa_db_connect  which makes your code longer and harder to read.

 Now you can use namespaces to keep your function name separate from anyone else‘s function name, and you won‘t have to make extra_long_named functions to get around the name collision problem.

 So a namespace is like a pointer to a file path where you can find the source of the function you are working with 

  (译文)名字冲突意味着:

    你创建了一个函数named db_connect,然后你用了某个跟你有相同函数名的代码(例如:一个include)。为了解决函数名冲突的问题,你把原来的函数named db_connect重命名为SteveWa_db_connect,这种形式让你的名字更加长,而且更难阅读。

    现在你使用命名空间namespaces来确保你的函数named db_connect跟另外一个你引用的同名函数区分开,与此同时你不需要额外的长前缀来解决函数名冲突。所以,命名空间namespace更像一个文件指路者,来却把你想用的文件路径是正确的。

 

以上是关于PHP学习笔记:对命名空间(namespace)学习资料的翻译的主要内容,如果未能解决你的问题,请参考以下文章

C++基础学习笔记命名空间 namespace 的理解和使用

php之快速入门学习-17(PHP 命名空间)

PHP命名空间(Namespace)的使用详解

PHP命名空间(Namespace)的使用详解

PHP命名空间(Namespace)的使用详解

PHP命名空间(Namespace)的使用详解