1. MVC pattern flow chart
##2. MVC concept
(1) Function MVC includes Controller, Model, and View. The function of the controller is to call the model and the view, pass the data generated by the model to the view, and let the view display it The function of the model is to obtain the data and process the returned data The function of the view is to beautify the obtained data and output it to the user terminal (2) Execution process1. Viewer-> Call the controller and issue instructions2. Controller-> Select the appropriate model according to the command3. Model-> Get data according to the command4. Controller-> Select the view according to the command 5 . View -> Display the obtained data3. Simple MVC example
(1) Directory planning1. testController.class.php Controller class file
<!-- 首先实例化控制器对象,并调用指令方法, 方法里面实例化模型对象,调用取数据方法 并实例化视图对象,调用展示方法 --> <!-- 控制器的方法没有参数,而其他的就有参数 --> <?php // 类名和文件名相同 class testController{ function show(){ $testModel = new testModel();//按指令选择一个模型 $data = $testModel -> get();//模型按照指令取数据 //按指令选择视图 实例化一个view的对象 $testView = new testView(); //把取到的数据按用户的样子显示出来 $testView -> display($data); } } ?>2. testModel.class.php Model class file
Naming rules: test (model file name) Model ( Model file).class.php Class file
<?php class testModel{ //获取数据 function get(){ return "hello world"; } } ?>3. testView.class.php View class file
<?php class testView{ //展示数据 function display($data){ echo $data; } } ?>4. Single entry file Let him call the controller , and the controller calls the model and view
<?php //引入类文件 require_once('/libs/Controller/testController.class.php'); require_once('/libs/Model/testModel.class.php'); require_once('/libs/View/testView.class.php'); //类的实例化 $testController = new testController();//对象赋值给变量 $testController->show();//调用方法 ?>5. Running results
4. Simple MVC instance improvement----Method Encapsulation
1. Encapsulate an object that instantiates a controller, etc. and a function that calls a method<?php //控制器名字和要执行的方法 function C($name,$method){ require_once('/libs/Controller/'.$name.'Controller.class.php'); //对象赋值给变量 // $testController = new testController(); // $testController->show(); eval('$obj = new '.$name.'Controller();$obj->'.$method.'();');//把字符串转换为可执行的php语句 } //封装一个实例化模型的对象和调用方法的函数 function M($name){ require_once('/libs/Model/'.$name.'Model.class.php'); //$testModel = new testModel(); eval('$obj = new '.$name.'Model();');//实例化 return $obj; } //封装一个实例化视图的对象和调用方法的函数 function V($name){ require_once('/libs/View/'.$name.'View.class.php'); //$testView = new testView(); eval('$obj = new '.$name.'View();'); return $obj; } //为了安全性 ,过滤函数 //addslashes对’,字符进行转义 //get_magic_quotes_gpc()当前魔法符号的打开状态,打开返回true, function daddslashes($str){ return (!get_magic_quotes_gpc() )? addslashes($str) : $str; } ?>2. Rewrite the entry file index.php Browser URL access form http://...index.php?controller=controller name&method=method name
<?php require_once('function.php'); //允许访问的控制器名和方法名的数组 $controllerAllow=array('test','index'); $methodAllow =array('test','index','show'); //用get方式接收url中的参数 //过滤输入非法字符 并判断是否在数组里 $controller = in_array($_GET['controller'],$controllerAllow )? daddslashes($_GET['controller']) :'index' ; $method = in_array($_GET['method'],$methodAllow) ? daddslashes($_GET['method']) :'index'; //调用控制器和执行方法 C($controller,$method); ?>3. Running resultsBrowser access http:// localhost:8080/MVC/index.php?controller=test&method=show Show hello world
The above is the detailed content of PHP - MVC pattern explanation and examples. For more information, please follow other related articles on the PHP Chinese website!

引言在当今快速发展的数字世界中,构建健壮、灵活且可维护的WEB应用程序至关重要。PHPmvc架构提供了实现这一目标的理想解决方案。MVC(模型-视图-控制器)是一种广泛使用的设计模式,可以将应用程序的各个方面分离为独立的组件。MVC架构的基础MVC架构的核心原理是分离关注点:模型:封装应用程序的数据和业务逻辑。视图:负责呈现数据并处理用户交互。控制器:协调模型和视图之间的交互,管理用户请求和业务逻辑。PHPMVC架构phpMVC架构遵循传统MVC模式,但也引入了语言特定的功能。以下是PHPMVC

mvc架构(模型-视图-控制器)是PHP开发中最流行的模式之一,因为它为组织代码和简化WEB应用程序的开发提供了清晰的结构。虽然基本的MVC原理对于大多数Web应用程序来说已经足够,但对于需要处理复杂数据或实现高级功能的应用程序,它存在一些限制。分离模型层分离模型层是高级MVC架构中常见的一种技术。它涉及将模型类分解为更小的子类,每个子类专注于特定功能。例如,对于一个电子商务应用程序,您可以将主模型类分解为订单模型、产品模型和客户模型。这种分离有助于提高代码的可维护性和可重用性。使用依赖注入依赖

MVC(Model-View-Controller)模式是一种常用的软件设计模式,可以帮助开发人员更好地组织和管理代码。MVC模式将应用程序分为三部分:模型(Model)、视图(View)和控制器(Controller),每个部分都有自己的角色和职责。在本文中,我们将讨论如何使用PHP实现MVC模式。模型(Model)模型代表应用程序的数据和数据处理。通常,

SpringMVC框架解密:为什么它如此受欢迎,需要具体代码示例引言:在当今的软件开发领域中,SpringMVC框架已经成为开发者非常喜爱的一种选择。它是基于MVC架构模式的Web框架,提供了灵活、轻量级、高效的开发方式。本文将深入探讨SpringMVC框架的魅力所在,并通过具体的代码示例来展示其强大之处。一、SpringMVC框架的优势灵活的配置方式Spr

PHP8框架开发MVC:逐步指南引言:MVC(Model-View-Controller)是一种常用的软件架构模式,用于将应用程序的逻辑、数据和用户界面分离。它提供了一种将应用程序分成三个不同组件的结构,以便更好地管理和维护代码。在本文中,我们将探讨如何使用PHP8框架来开发一个符合MVC模式的应用程序。第一步:理解MVC模式在开始开发MVC应用程序之前,我

在Web开发中,MVC(Model-View-Controller)是一种常用的架构模式,用于处理和管理应用程序的数据、用户界面和控制逻辑。PHP作为流行的Web开发语言,也可以借助MVC架构来设计和构建Web应用程序。本文将介绍如何在PHP中使用MVC架构设计项目,并解释其优点和注意事项。什么是MVCMVC是一种软件架构模式,通常用于Web应用程序中。MV

SpringMVC是一个非常流行的JavaWeb开发框架,它以其强大的功能和灵活性而受到广泛的欢迎。它的设计思想是基于MVC(Model-View-Controller)架构模式,通过将应用程序分为模型、视图和控制器三个部分,实现了应用程序的解耦和模块化。在本文中,我们将深入探讨SpringMVC框架的各个方面,包括请求的处理和转发、模型和视图的处理、

Beego是一个基于Go语言的Web应用框架,具有高性能、简单易用和高可扩展性等优点。其中,MVC架构是Beego框架的核心设计理念之一,它可以帮助开发者更好地管理和组织代码,提高开发效率和代码质量。本文将深入探究Beego的MVC架构,让开发者更好地理解和使用Beego框架。一、MVC架构简介MVC,即Model-View-Controller,是一种常见


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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version
Chinese version, very easy to use

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6
Visual web development tools
