Home php教程 php手册 PHP实现MVC开发: 一个简单的MVC

PHP实现MVC开发: 一个简单的MVC

Jun 10, 2016 pm 03:06 PM
mvc php code accomplish Open source Simple programming programming language software development

今天研究了下PHP MVC结构,所以决定自己写个简单的MVC,以待以后有空再丰富。
至于什么MVC结构,其实就是三个Model,Contraller,View单词的简称,,Model,主要任务就是把数据库或者其他文件系统的数据按 照我们需要的方式读取出来。View,主要负责页面的,把数据以html的形式显示给用户。Controller,主要负责业务逻辑,根据用户的 Request进行请求的分配,比如说显示登陆界面,就需要调用一个控制器userController的方法loginAction来显示。
下面我们用PHP来创建一个简单的MVC结构系统。
首先创建单点入口,即bootstrap文件index.php,作为整个MVC系统的唯一入口。什么是单点入口呢?所谓单点入口就是整个应用程序只有一 个入口,所有的实现都通过这个入口来转发。为什么要做到单点入口呢?单点入口有几大好处:第一、一些系统全局处理的变量,类,方法都可以在这里进行处理。 比如说你要对数据进行初步的过滤,你要模拟session处理,你要定义一些全局变量,甚至你要注册一些对象或者变量到注册器里面。第二、程序的架构更加 清晰明了。当然好处还有很多的。:)

<?php <br>include("core/ini.php");<br>initializer::initialize();<br>$router = loader::load("router");<br>dispatcher::dispatch($router);<br>
Copy after login

这个文件就只有4句,我们现在一句句来分析。
include(”core/ini.php”);

我们来看core/ini.php

<?php <br>set_include_path(get_include_path() . PATH_SEPARATOR . "core/main");<br>//set_include_path — Sets the include_path configuration option<br>function __autoload($object){<br>  require_once("{$object}.php");<br>}<br>
Copy after login

这个文件首先设置了include_path,也就是我们如果要找包含的文件,告诉系统在这个目录下查找。其实我们定义__autoload()方法,这个方法是在PHP5增加的,就是当我们实例化一个函数的时候,如果本文件没有,就会自动去加载文件。官方的解释是:
Many developers writing object-oriented applications create one PHP source file per-class definition. One of the biggest annoyances is having to write a long list of needed includes at the beginning of each script (one for each class).

In PHP 5, this is no longer necessary. You may define an __autoload function which is automatically called in case you are trying to use a class/interface which hasn’t been defined yet. By calling this function the scripting engine is given a last chance to load the class before PHP fails with an error.

接下来我们看下面一句
initializer::initialize();
这就话就是调用initializer类的一个静态函数initialize,因为我们在ini.php,设置了include_path,以及定义了__autoload,所以程序会自动在core/main目录查找initializer.php.
initializer.php文件如下:

<?php <br>class initializer<br>{<br>	public static function initialize()	{<br>		set_include_path(get_include_path().PATH_SEPARATOR . "core/main");<br>		set_include_path(get_include_path().PATH_SEPARATOR . "core/main/cache");<br>		set_include_path(get_include_path().PATH_SEPARATOR . "core/helpers");<br>		set_include_path(get_include_path().PATH_SEPARATOR . "core/libraries");<br>		set_include_path(get_include_path().PATH_SEPARATOR . "app/controllers");<br>		set_include_path(get_include_path().PATH_SEPARATOR."app/models");<br>		set_include_path(get_include_path().PATH_SEPARATOR."app/views");<br>		//include_once("core/config/config.php");<br>	}<br>}<br>?><br>
Copy after login

这个函数很简单,就只定义了一个静态函数,initialize函数,这个函数就是设置include_path,这样,以后如果包含文件,或者__autoload,就会去这些目录下查找。

OK,我们继续,看第三句
$router = loader::load(”router”);

这句话也很简单,就是加载loader函数的静态函数load,下面我们来loader.php

<?php <br>class loader<br>{<br>  private static $loaded = array();<br>  public static function load($object){<br>    $valid = array(  "library",<br>	                    "view",<br>                            "model",<br>                            "helper",<br>                            "router",<br>                            "config",<br>                            "hook",<br>                            "cache",<br>                            "db");<br>    if (!in_array($object,$valid)){<br> 	  throw new Exception("Not a valid object '{$object}' to load");<br>    }<br>    if (empty(self::$loaded[$object])){<br>      self::$loaded[$object]= new $object();<br>    }<br>    return self::$loaded[$object];<br>  }<br>}<br>
Copy after login

这个文件就是去加载对象,因为以后我们可能会丰富这个MVC系统,会有model,helper,config等等的组件。如果加载的组件不在有效 的范围内,我们抛出一个异常。如果在的话,我们实例化一个对象,其实这里用了单件设计模式。也就是这个对象其实就只能是一个实例化对象,如果没有实例化, 创建一个,如果存在的,则不实例化。

好,因为我们现在要加载的是router组件,所以我们看下router.php文件,这个文件的作用就是映射URL,对URL进行解析。
router.php

<?php <br>class router<br>{<br>  private $route;<br>  private $controller;<br>  private $action;<br>  private $params;<br>  public function __construct()<br>  {<br>    $path = array_keys($_GET);<br>    if (!isset($path[0])){<br>      if (!empty($default_controller))<br>           $path[0] = $default_controller;<br>      else<br>           $path[0] = "index";<br>    }<br>    $route= $path[0];<br>    $this->route = $route;<br>    $routeParts = split( "/",$route);<br>    $this->controller=$routeParts[0];<br>    $this->action=isset($routeParts[1])? $routeParts[1]:"base";<br>    array_shift($routeParts);<br>    array_shift($routeParts);<br>    $this->params=$routeParts;<br>  }<br>  public function getAction() {<br>    if (empty($this->action)) $this->action="main";<br>    return $this->action;<br>  }<br>  public function getController()  {<br>    return $this->controller;<br>  }<br>  public function getParams()  {<br>    return $this->params;<br>  }<br>}<br>
Copy after login

我们可以看到,首先我们是拿到$_GET,用户Request的URL,然后从URL里我们解析出Controller和Action,以及Params
比如我们的地址是http://www.tinoweb.cn/user/profile/id/3
那么从上面的地址,我们可以拿到controller是user,action似乎profile,参数是id以及3

OK我们看最后一句,就是
dispatcher::dispatch($router);

这句话的意思很明了,就是拿到URL解析的结果,然后通过dispatcher来分发controlloer及action来Response给用户
好,我们来看下dispatcher.php文件

<br>class dispatcher<br>{<br>  public static function dispatch($router)<br>  {<br>    global $app;<br>    ob_start();<br>    $start = microtime(true);<br>    $controller = $router->getController();<br>    $action = $router->getAction();<br>    $params = $router->getParams();<br>    $controllerfile = "app/controllers/{$controller}.php";<br>    if (file_exists($controllerfile)){<br>      require_once($controllerfile);<br>      $app = new $controller();<br>      $app->setParams($params);<br>      $app->$action();<br>      if (isset($start)) echo "<br><br>Tota1l time for dispatching is : ".(microtime(true)-$start)." seconds.<br><br>";<br>      $output = ob_get_clean();<br>      echo $output;<br>     }else{<br>	throw new Exception("Controller not found");<br>     }<br>   }<br>}<br>
Copy after login

这个类很明显,就是拿到$router来,寻找文件中的controller和action来回应用户的请求。

OK,我们一个简单的,MVC结构,就这样,当然这里还不能算是一个很完整的MVC,因为这里还没有涉及到View和Model,有空我再这里丰富。

我们来写个Controller文件来测试下上面的这个系统。

我们在app/controllers/下创建一个user.php文件

//user.php<br><?php <br>class user<br>{<br>  function base()<br>  {<br>  }<br>  public function login()<br>  {<br>    echo 'login html page';<br>  }<br>  public function register()<br>  {<br>    echo 'register html page';<br>  }<br>  public function setParams($params){<br>	var_dump($params);<br>  }<br>}<br>
Copy after login

然后你可以在浏览器中输入http://localhost/index.php?user/register 或者 http://localhost/index.php?user/login来测试下。

Statement of this Website
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

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

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

The Key to Coding: Unlocking the Power of Python for Beginners The Key to Coding: Unlocking the Power of Python for Beginners Oct 11, 2024 pm 12:17 PM

Python is an ideal programming introduction language for beginners through its ease of learning and powerful features. Its basics include: Variables: used to store data (numbers, strings, lists, etc.). Data type: Defines the type of data in the variable (integer, floating point, etc.). Operators: used for mathematical operations and comparisons. Control flow: Control the flow of code execution (conditional statements, loops).

Problem-Solving with Python: Unlock Powerful Solutions as a Beginner Coder Problem-Solving with Python: Unlock Powerful Solutions as a Beginner Coder Oct 11, 2024 pm 08:58 PM

Pythonempowersbeginnersinproblem-solving.Itsuser-friendlysyntax,extensivelibrary,andfeaturessuchasvariables,conditionalstatements,andloopsenableefficientcodedevelopment.Frommanagingdatatocontrollingprogramflowandperformingrepetitivetasks,Pythonprovid

Java Made Simple: A Beginner's Guide to Programming Power Java Made Simple: A Beginner's Guide to Programming Power Oct 11, 2024 pm 06:30 PM

Java Made Simple: A Beginner's Guide to Programming Power Introduction Java is a powerful programming language used in everything from mobile applications to enterprise-level systems. For beginners, Java's syntax is simple and easy to understand, making it an ideal choice for learning programming. Basic Syntax Java uses a class-based object-oriented programming paradigm. Classes are templates that organize related data and behavior together. Here is a simple Java class example: publicclassPerson{privateStringname;privateintage;

Demystifying C: A Clear and Simple Path for New Programmers Demystifying C: A Clear and Simple Path for New Programmers Oct 11, 2024 pm 10:47 PM

C is an ideal choice for beginners to learn system programming. It contains the following components: header files, functions and main functions. A simple C program that can print "HelloWorld" needs a header file containing the standard input/output function declaration and uses the printf function in the main function to print. C programs can be compiled and run by using the GCC compiler. After you master the basics, you can move on to topics such as data types, functions, arrays, and file handling to become a proficient C programmer.

See all articles