Home  >  Article  >  PHP Framework  >  Parse ThinkPHP namespace

Parse ThinkPHP namespace

藏色散人
藏色散人forward
2020-05-17 15:52:582689browse

The following tutorial column developed by thinkphp will analyze the namespace of ThinkPHP for everyone. I hope it will be helpful to friends in need!

Parse ThinkPHP namespace

We all know that since PHP syntax does not support the function overloading mechanism, what should we do if there are two methods with the same name in an application?

In the Yii framework, in order to avoid problems caused by name duplication, all classes have the words C in front of them, and the concept of namespace is introduced in ThinkPHP.

a) The namespace is a virtual definition space, not a real directory

b) The delimiters of the namespace are all backslashes\

c) Unqualified name: getName() Get the name of its nearest namespace getName()

d) Qualified name: beijinggetName() Relative method

Locate through the nearest namespacebeijinggetName(): As in the example below, he will think that beijinggetName() is in the current directory, so Will find dalianbeijinggetName(). At this time, an error will be reported because it cannot be found! !

e) Fully qualified name: beijinggetName() Get specific elements directly in the specified namespace

f) Namespace targets: functions, class names, and constants Its function is to collectively refer to these three elements in the namespace.

The operation examples are as follows:

Parse ThinkPHP namespace

##Related recommendations: "

TP5

The above is the detailed content of Parse ThinkPHP namespace. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:segmentfault.com. If there is any infringement, please contact admin@php.cn delete