php namespace (detailed answer combined with code)

亚连
Release: 2023-03-26 11:34:01
Original
1504 people have browsed it

In php## namespace, you need to know the terminology of the three names of spaces: unqualified names, qualified names, fully qualified names, and how PHP parses them. The official documents are very good, so I just used them. Understanding them is very helpful for learning the following content. We learned earlier about the subspace and public space of the namespace. It makes sense that the calling syntax of the namespace is like a file path. It allows us to customize the subspace to describe the relationship between each space.

The terms for the three names in the namespace are as follows:

1. Unqualified name, or class name that does not include a prefix, such as $comment = new Comment();. If the current namespace is Blog\Article, Comment will be parsed as Blog\Article\Comment. If the code using Comment does not contain code in any namespace (in the global space), the Comment will be parsed as a Comment.

2. Qualified name, or name containing prefix, such as $comment = new Article\Comment();. If the current namespace is Blog, Comment will be parsed as Blog\Article\Comment. If the code using Comment does not contain code in any namespace (in the global space), the Comment will be parsed as a Comment.

3. Fully qualified name, or a name that includes the global prefix

operator, such as $comment = new \Article\Comment();. In this case, Comment is always resolved to the literal name Article\Comment in the code.

In fact, these three names can be compared to file names (such as comment.php), relative path names (such as ./article/comment.php), and absolute path names (such as /blog/article/comment. php) which might be easier to understand.

Create a Blog space here, using an unqualified name to represent the current Blog space. This call will be parsed after instantiation. Use a qualified name to indicate that it is relative to the Blog space. After instantiation, this call will be parsed into Blog\Article\Comment(). Note that there is no backslash in front of the class. Use a fully qualified name, indicating that it is absolute to the Blog space. This call will be parsed after instantiation. Note the difference between a backslash in front of the class and no backslash.

The sample code is as follows:

[html] view plain copy
<?php  
//创建空间Blog  
namespace Blog;  
class Comment { }  
//非限定名称,表示当前Blog空间  
//这个调用将被解析成 Blog\Comment();  
$blog_comment = new Comment();  
//限定名称,表示相对于Blog空间  
//这个调用将被解析成 Blog\Article\Comment();  
$article_comment = new Article\Comment(); //类前面没有反斜杆\  
//完全限定名称,表示绝对于Blog空间  
//这个调用将被解析成 Blog\Comment();  
$article_comment = new \Blog\Comment(); //类前面有反斜杆\  
//完全限定名称,表示绝对于Blog空间  
//这个调用将被解析成 Blog\Article\Comment();  
$article_comment = new \Blog\Article\Comment(); //类前面有反斜杆\  
//创建Blog的子空间Article  
namespace Blog\Article;  
class Comment { }  
?>
Copy after login

The above is the php namespace I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

Detailed introduction to the difference between PHP namespace and automatic loading

Detailed introduction to PHP in combination with code Scope

Detailed usage method in PHP closure function() use()

The above is the detailed content of php namespace (detailed answer combined with code). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!