今天研究了下PHP MVC結構,因此決定本身寫個簡單的MVC,以待之後有空再豐富。
至於什麼MVC結構,其實就是三個Model,Contraller,View單詞的簡稱,,Model,主要任務就是把數據庫或者其餘文件系統的數據按 照咱們須要的方式讀取出來。View,主要負責頁面的,把數據以html的形式顯示給用戶。Controller,主要負責業務邏輯,根據用戶的 Request進行請求的分配,好比說顯示登錄界面,就須要調用一個控制器userController的方法loginAction來顯示。
下面咱們用PHP來建立一個簡單的MVC結構系統。
首先建立單點入口,即bootstrap文件index.php,做爲整個MVC系統的惟一入口。什麼是單點入口呢?所謂單點入口就是整個應用程序只有一 個入口,全部的實現都經過這個入口來轉發。爲何要作到單點入口呢?單點入口有幾大好處:第1、一些系統全局處理的變量,類,方法均可以在這裏進行處理。 好比說你要對數據進行初步的過濾,你要模擬session處理,你要定義一些全局變量,甚至你要註冊一些對象或者變量到註冊器裏面。第2、程序的架構更加 清晰明瞭。固然好處還有不少的。:)php
<?php
include("core/ini.php");
initializer::initialize();
$router = loader::load("router");
dispatcher::dispatch($router);
這個文件就只有4句,咱們如今一句句來分析。
include(」core/ini.php」);html
咱們來看core/ini.phpweb
<?php
set_include_path(get_include_path() . PATH_SEPARATOR . "core/main");
//set_include_path — Sets the include_path configuration option
function __autoload($object){
require_once("{$object}.php");
}
這個文件首先設置了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.bootstrap
接下來咱們看下面一句
initializer::initialize();
這就話就是調用initializer類的一個靜態函數initialize,由於咱們在ini.php,設置了include_path,以及定義了__autoload,因此程序會自動在core/main目錄查找initializer.php.
initializer.php文件以下:設計模式
<?php
class initializer
{
public static function initialize() {
set_include_path(get_include_path().PATH_SEPARATOR . "core/main");
set_include_path(get_include_path().PATH_SEPARATOR . "core/main/cache");
set_include_path(get_include_path().PATH_SEPARATOR . "core/helpers");
set_include_path(get_include_path().PATH_SEPARATOR . "core/libraries");
set_include_path(get_include_path().PATH_SEPARATOR . "app/controllers");
set_include_path(get_include_path().PATH_SEPARATOR."app/models");
set_include_path(get_include_path().PATH_SEPARATOR."app/views");
//include_once("core/config/config.php");
}
}
?>
這個函數很簡單,就只定義了一個靜態函數,initialize函數,這個函數就是設置include_path,這樣,之後若是包含文件,或者__autoload,就會去這些目錄下查找。瀏覽器
OK,咱們繼續,看第三句
$router = loader::load(」router」);session
這句話也很簡單,就是加載loader函數的靜態函數load,下面咱們來loader.php架構
<?php
class loader
{
private static $loaded = array();
public static function load($object){
$valid = array( "library",
"view",
"model",
"helper",
"router",
"config",
"hook",
"cache",
"db");
if (!in_array($object,$valid)){
throw new Exception("Not a valid object '{$object}' to load");
}
if (empty(self::$loaded[$object])){
self::$loaded[$object]= new $object();
}
return self::$loaded[$object];
}
}
這個文件就是去加載對象,由於之後咱們可能會豐富這個MVC系統,會有model,helper,config等等的組件。若是加載的組件不在有效 的範圍內,咱們拋出一個異常。若是在的話,咱們實例化一個對象,其實這裏用了單件設計模式。也就是這個對象其實就只能是一個實例化對象,若是沒有實例化, 建立一個,若是存在的,則不實例化。app
好,由於咱們如今要加載的是router組件,因此咱們看下router.php文件,這個文件的做用就是映射URL,對URL進行解析。
router.php
<?php
class router
{
private $route;
private $controller;
private $action;
private $params;
public function __construct()
{
$path = array_keys($_GET);
if (!isset($path[0])){
if (!empty($default_controller))
$path[0] = $default_controller;
else
$path[0] = "index";
}
$route= $path[0];
$this->route = $route;
$routeParts = split( "/",$route);
$this->controller=$routeParts[0];
$this->action=isset($routeParts[1])? $routeParts[1]:"base";
array_shift($routeParts);
array_shift($routeParts);
$this->params=$routeParts;
}
public function getAction() {
if (empty($this->action)) $this->action="main";
return $this->action;
}
public function getController() {
return $this->controller;
}
public function getParams() {
return $this->params;
}
}
咱們能夠看到,首先咱們是拿到$_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文件
<?
class dispatcher
{
public static function dispatch($router)
{
global $app;
ob_start();
$start = microtime(true);
$controller = $router->getController();
$action = $router->getAction();
$params = $router->getParams();
$controllerfile = "app/controllers/{$controller}.php";
if (file_exists($controllerfile)){
require_once($controllerfile);
$app = new $controller();
$app->setParams($params);
$app->$action();
if (isset($start)) echo "
Tota1l time for dispatching is : ".(microtime(true)-$start)." seconds.
";
$output = ob_get_clean();
echo $output;
}else{
throw new Exception("Controller not found");
}
}
}
這個類很明顯,就是拿到$router來,尋找文件中的controller和action來回應用戶的請求。
OK,咱們一個簡單的,MVC結構,就這樣,固然這裏還不能算是一個很完整的MVC,由於這裏尚未涉及到View和Model,有空我再這裏豐富。
咱們來寫個Controller文件來測試下上面的這個系統。
咱們在app/controllers/下建立一個user.php文件
//user.php
<?php
class user
{
function base()
{
}
public function login()
{
echo 'login html page';
}
public function register()
{
echo 'register html page';
}
public function setParams($params){
var_dump($params);
}
}
而後你能夠在瀏覽器中輸入http://localhost/index.php?user/register 或者 http://localhost/index.php?user/login來測試下。