thinkphp The d method is used to instantiate a custom model class. It is an encapsulation of the Model class instantiation by the ThinkPHP framework. Its usage syntax is "D('[project://][group/] model ','Model layer name')", its return value is the instantiated model object.
The operating environment of this article: Windows7 system, thinkphp v5.1 version, DELL G3 computer
How to use thinkphp d method?
Detailed explanation of ThinkPHP functions: D method
D method
D method should be the more commonly used method, used for instantiation The custom model class 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: The return value of the
D('[项目://][分组/]模型','模型层名称')
method is instantiation 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 How to use thinkphp d method. For more information, please follow other related articles on the PHP Chinese website!

The article discusses ThinkPHP's built-in testing framework, highlighting its key features like unit and integration testing, and how it enhances application reliability through early bug detection and improved code quality.

Article discusses using ThinkPHP for real-time stock market data feeds, focusing on setup, data accuracy, optimization, and security measures.

The article discusses key considerations for using ThinkPHP in serverless architectures, focusing on performance optimization, stateless design, and security. It highlights benefits like cost efficiency and scalability, but also addresses challenges

The article discusses implementing service discovery and load balancing in ThinkPHP microservices, focusing on setup, best practices, integration methods, and recommended tools.[159 characters]

ThinkPHP's IoC container offers advanced features like lazy loading, contextual binding, and method injection for efficient dependency management in PHP apps.Character count: 159

The article discusses using ThinkPHP to build real-time collaboration tools, focusing on setup, WebSocket integration, and security best practices.

ThinkPHP benefits SaaS apps with its lightweight design, MVC architecture, and extensibility. It enhances scalability, speeds development, and improves security through various features.

The article outlines building a distributed task queue system using ThinkPHP and RabbitMQ, focusing on installation, configuration, task management, and scalability. Key issues include ensuring high availability, avoiding common pitfalls like imprope


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

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

Dreamweaver Mac version
Visual web development tools