Big d in thinkphp is a built-in method used to instantiate a custom model class. It is an encapsulation of the Model class instantiation by the ThinkPHP framework. The calling format of the D method is "D('[project ://][Group/]Model','Model layer name')".
The operating environment of this article: Windows 7 system, ThinkPHP version 5.0, Dell G3 computer.
Detailed explanation of ThinkPHP functions: D method
D method:
D method should be used more often method, used to instantiate custom model classes, is an encapsulation of the Model class instantiation by the ThinkPHP framework, and implements the singleton mode, supporting cross-project and group calls. The calling format is as follows:
D('[项目://][分组/]模型','模型层名称')
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. 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');
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();
But if you use the D method, if the UserModel class does not exist, it will automatically call
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 cross-group and project instantiation models, for example:
//实例化Admin项目的User模型 D('Admin://User') //实例化Admin分组的User模型 D('Admin/User')
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');
D('User','Service');
will import Lib/Service/UserService.class.php , and instantiated, equivalent to the following code:
import('@.Service.UserService'); $User = new UserSerivce();
Recommended: "The latest 10 thinkphp video tutorials"
The above is the detailed content of thinkphp what is big d. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version
God-level code editing software (SublimeText3)