Home > PHP Framework > ThinkPHP > body text

How to use thinkphp big d method

藏色散人
Release: 2022-12-06 09:55:05
Original
1935 people have browsed it

thinkphp The big d method is used to instantiate a custom model class. 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. Its usage syntax is as follows "$User = D('User');" means instantiating a custom model of the current project.

How to use thinkphp big d method

The operating environment of this tutorial: Windows 7 system, ThinkPHP version 5, Dell G3 computer.

thinkphp How to use the big d method?

D method

The D method should be the more commonly used method. It is used to instantiate custom model classes. It is the ThinkPHP framework’s response to the Model class. It is an encapsulation of instantiation and implements singleton mode, supporting cross-project and group calls. The calling format is as follows: The return value of the

D('[项目://][分组/]模型','模型层名称')
Copy after login

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. At the same time, for the already instantiated model , will not be instantiated repeatedly. 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 after login

will import the Lib/Model/UserModel.class.php file under the current project, Then instantiate the UserModel class, so the actual code may be equivalent to the following:

import('@.Model.UserModel');
$User = new UserModel();
Copy after login

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

new Model('User');
Copy after login

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 cross-group and project instantiation models, for example:

//实例化Admin项目的User模型
D('Admin://User')
//实例化Admin分组的User模型
D('Admin/User')
Copy after login

Note: To implement cross-project calling models, 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 after login
D('User','Service');
Copy after login

will import Lib/Service/UserService.class.php , and instantiated, equivalent to the following code:

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

Recommended learning: "thinkPHP Video Tutorial"

The above is the detailed content of How to use thinkphp big d method. 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!