search
HomeBackend DevelopmentPHP TutorialA brief discussion on the programming ideas of MVC in PHP_PHP tutorial

I believe that articles like this have been written badly, but I am still willing to take the risk and share my experience with you today. It's purely original, and I have nothing to keep. I hope it will be helpful to newbies. If there is anything wrong with it, everyone is welcome to complain.

What is MVC?

To put it simply, it 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, 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 where is PHP and where is HTML. This is very difficult for a programmer to do. Say, it's just a 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.

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 the V or template file; when there is a problem with the logic, you can check it. 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 put Copy this directory and modify the interface.

The idea of ​​implementing MVC in PHP

We need three base classes: 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. .

I will provide you with a design idea of ​​MVC base class for reference only:

1. Design of Controller class

A main() method for the program to call, mainly deciding how to process it through 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 attributes, 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 to load a data.

An add() method can automatically construct SQL statements based on defined attributes and perform insertion operations.

An eidt() method, the same as above, but performs modification operations.

A del() method, same as above, but performs deletion 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, it can be like this index.php?controller=user www.pprar.com

Then index receives the get variable, and there is no 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. Just call the main function of C directly, 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), so it 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 the 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() , load the template, and MVC is executed.

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 I have used it in practice, and I feel good about it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/626647.htmlTechArticleI believe that articles like this have been written badly, but today I am still willing to take the risk and share my experience with Share it with everyone. It is purely original, I have nothing to keep, I hope it will be helpful to newbies...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

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尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

MantisBT

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.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),