【www.gdgbn.com--.Net开发】

php教程
include("core/ini.php");
initializer::initialize();
$router = loader::load("router");
dispatcher::dispatch($router);

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

我们来看core/ini.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增加的,就是当我们实例化一个函数的时候,如果本文件没有,就会自动去加载文件。官方的解释是:
接下来我们看下面一句
initializer::initialize();
这就话就是调用initializer类的一个静态函数initialize,因为我们在ini.php,设置了include_path,以及定义了__autoload,所以程序会自动在core/main目录查找initializer.php.
initializer.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”);

  这句话也很简单,就是加载loader函数的静态函数load,下面我们来loader.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等等的组件。如果加载的组件不在有效 的范围内,我们抛出一个异常。如果在的话,我们实例化一个对象,其实这里用了单件设计模式。也就是这个对象其实就只能是一个实例化对象,如果没有实例化, 创建一个,如果存在的,则不实例化。

好,因为我们现在要加载的是router组件,所以我们看下router.php文件,这个文件的作用就是映射url,对url进行解析。
router.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
那么从上面的地址,我们可以拿到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
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://www.gdgbn.com/asp/29171/