This article introduces a detailed explanation of ThinkPHP functions: D method, which has a certain reference value. Now I share it with everyone. Friends in need can refer to it
D method should be the most commonly used method. It is used to instantiate custom model classes. It is an encapsulation of Model class instantiation by the ThinkPHP framework. It also implements the singleton mode and supports cross-project and group calls. The calling format As follows:
D('[Project://][Group/]Model','Model layer name')
The return value of the method is the instantiated model object.
D method can automatically detect the model class. If a custom model class exists, the custom model class will be instantiated. If it does not exist, the Model base class will be
实
instantiated, and at the same time Models that have already been instantiated will not be instantiated again. The most common usage of the
D method is to instantiate a custom model of the current project, for example:
// 实例化User模型 $User = D('User');
Copy code
will import the Lib/Model/UserModel.class.php file under the current project, and then instantiate the UserModel class, so the actual code may be equivalent to the following:
import('@.Model.UserModel'); $User = new UserModel();
Copy code
But if you use the D method, if the UserModel class does not exist, it will be automatically called
new Model('User');
Copy code
And there is no need to instantiate again when calling for the second time, which can reduce a certain amount of object instantiation overhead.
D method can support instantiating models across groups and projects, for example:
//实例化Admin项目的User模型 D('Admin://User') //实例化Admin分组的User模型 D('Admin/User')
Copy code
Note: To implement the cross-project calling model, you must ensure that the directory structures of the two projects are parallel.
Starting from version 3.1, due to the added support for hierarchical models, the D method can also instantiate other models, for example:
// 实例化UserService类 $User = D('User','Service'); // 实例化UserLogic类 $User = D('User','Logic');
Copy code
D('User','Service');
import('@.Service.UserService'); $User = new UserSerivce();
A brief discussion on the simple implementation of thinkphp5 instance
The above is the detailed content of Detailed explanation of ThinkPHP functions: D method. For more information, please follow other related articles on the PHP Chinese website!