Home >Backend Development >PHP Tutorial >Detailed explanation of D method examples of ThinkPHP3.1_PHP tutorial

Detailed explanation of D method examples of ThinkPHP3.1_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:24:34897browse

The D method should be the most commonly used method. It is used to instantiate custom model classes. It is an encapsulation of the Model class instantiation by the ThinkPHP framework. It also implements the singleton mode and supports cross-project and group calls. , the calling format is as follows:

D('[project://][group/]model','model layer name')

The return value of the

method is the instantiated model object.

The 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. At the same time, for the model that has been instantiated, it will not Repeat deinstantiation.

The most common usage of D method is to instantiate a custom model of the current project, for example:

// 实例化User模型
$User = D('User');

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();

But if you use the D method, if the UserModel class does not exist, it will be called automatically

new Model('User');

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')

Note: To implement the cross-project calling model, you must ensure that the directory structures of the two projects are parallel.

Since version 3.1 of ThinkPHP, 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');

And D('User','Service'); will import Lib/Service/UserService.class.php and instantiate it, which is equivalent to the following code:

import('@.Service.UserService');
$User = new UserSerivce();

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/825415.htmlTechArticleD method should be the more commonly used method. It is used to instantiate custom model classes and is the ThinkPHP framework. An encapsulation of Model class instantiation, and implements singleton mode, supporting cross-project and...
Statement:
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