search
HomeBackend DevelopmentPHP TutorialBriefly introduce the MVC idea and the method of implementing MVC in PHP

The so-called MVC simply means classifying and layering the website source code.

The meaning of the three letters of MVC: M: Model model, responsible for database operations. V: View is responsible for calling the Model to retrieve data, and then calling the template to display the final effect. C: Controller, the entry point of the program, decides which View to call and tells the View what to do.

In this way, the execution order of the program is C-V-M or C-M, which is exactly the opposite of the name of MVC.

Why MVC?

1. It can make the physical structure of the website program more reasonable. When building a website with PHP, the stupidest way is to build each page into a PHP file. If your website only has three pages: index.php and menu.php.article.php, then you don’t need MVC. But when we make a general website, we often have dozens of pages. It is obviously not appropriate to put all the pages in the root directory. What we can accept, so you need a reasonable idea to classify your code, divide them into different directories according to functions, and intelligently load and call them by the program. This is what MVC will help you do.

2. Make the code easier to maintain. Let's look at a single page again. The stupidest way is to mix PHP code and HTML code. This is obviously not good enough. When maintaining the website, you have to distinguish between PHP and HTML. For a programmer, this is simply Only disaster. So many people use Smarty, so that they can separate "data processing" and "page display". This is really good, and many people are doing it, but this is not MVC. What MVC has to do is to separate "data processing" ” is further divided into “logical processing” and “database operations”, which is what is called layering. In this way, when your program has an error or you want to modify it, it becomes very easy. When the page displays an error, you can check V or the template file; when there is a problem with the logic, you can check C and V. ;When your database operation error occurs, check M. In fact, MVC generally divides a PHP page into 4 pages, namely C, V, M, and template. Each performs its own duties to facilitate management.

3. Conducive to code reuse. MVC will generally put a large function in a directory, which is managed by a C. For example, if we want to build a website with a membership system, we can put all the membership-related codes in the user directory and manage them uniformly by User_Controller. When another website of ours also needs a membership system, we can directly copy this directory. In the past, just modifying the interface was enough.

The idea of ​​implementing MVC in PHP

Three base classes are needed: Controller, View, and Model, and then different C, V, and M inherit them respectively to have corresponding properties and methods. If you don’t understand here, you can read an object-oriented book. To provide you with a design idea for the MVC base class, for reference only: 1. Design of Controller class A main() method, called by the program, mainly determines how to process it through the get and post variables. A getModel($model) method calls M in the corresponding directory when the database needs to be called. A display($view) method, called in the main() method, loads the corresponding V, and replaces the main() method of the corresponding V;

2.The design of View class is very similar to Controller A main() method, this method is called when C loads V so that the program can continue to execute. A getModel($model) method calls M in the corresponding directory when the database needs to be called. A display($template) calls the corresponding template file and passes the data to the template.

3. Design of Model class You can define some properties, such as which tables to operate, which fields to operate, etc. A getDB() method to obtain an instance of a database class (database classes are generally designed using the singleton mode) A load() method loads a data. An add() method can automatically construct SQL statements based on defined attributes and perform insertion operations. An eidt() method, same as above, but performs modification operations. A del() method, same as above, but performs a delete operation.

In order to enable novices to better understand the working principle of my idea, we now simulate a user login scenario to see how MVC works.

Now assume that all data is submitted to index.php,

Step one: We submit each get variable and tell index.php which C to use. For example, index.php can be like this? controller=user Then index receives the get variable, and does not need to do anything. It directly finds /user/controller.php and throws all the data to it. Originally GET and POST are global, so index.php does not need to do anything and directly calls C. The main function is enough, and the task of index.php is completed.

Step 2: The main function of C starts to execute, checks the variables, and finds the login operation that the user wants to perform (very simple, you just post the variable do=login), then calls getModel and loads the corresponding M class (for example, /user/models/ model.php), and instantiate it, call the load method of the instance, load the user's data, and determine whether it is consistent with the password submitted by the user. If the submitted data is incorrect, the header will jump to the error page. If it is correct, call display () method, load the corresponding V (such as /user/views/details.php), instantiate it, call its main() function, and enter the third step. At this point, the task of C has been completed, and the second operation is performed in the main function.

Step 3: You can choose to call getModel() to load M and rewrite the retrieved data, or you can pass the parameters (such as SESSION) when C instantiates V. After V has determined to get the data, display() and load Template, MVC execution is completed. Of course, due to word count and energy limitations, what is written here is only a very brief summary. There are many details to consider during actual implementation. But when I designed MVC, this was the general idea, and it has been used in practice, and it feels good.



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
11 Best PHP URL Shortener Scripts (Free and Premium)11 Best PHP URL Shortener Scripts (Free and Premium)Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation SurveyAnnouncement of 2025 PHP Situation SurveyMar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

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 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)