php开发一个简单的MVC
} set_include_path(get_include_path().PATH_SEPARATOR . "app/controllers");
{
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). "cache",
}
<?php
$path[0] = $default_controller;
}else{
{
复制代码 代码如下:
OK我们看最后一句,就是
OK,我们继续,看第三句
require_once($controllerfile);
if (empty(self::$loaded[$object])){
return self::$loaded[$object];
ob_start();
好,因为我们现在要加载的是router组件,所以我们看下router.php文件,这个文件的作用就是映射URL,对URL进行解析。
set_include_path(get_include_path().PATH_SEPARATOR . "core/helpers");
复制代码 代码如下:
function base()array_shift($routeParts);
set_include_path(get_include_path().PATH_SEPARATOR."app/models");
public function register()
}
}
dispatcher::dispatch($router); $route= $path[0];
echo 'register html page';
$output = ob_get_clean();
$app = new $controller();
return $this->action;
}
return $this->controller;
我们来写个Controller文件来测试下上面的这个系统。
public function getController() {
}
$router = loader::load("router");
class initializer
$app->$action();
{
public function setParams($params){
initializer::initialize();
<?
MVC其实就是三个Model,Contraller,View单词的简称。
$action = $router->getAction();
比如我们的地址是
set_include_path(get_include_path().PATH_SEPARATOR . "core/libraries");
return $this->params;
class loader
private $params;
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.
echo 'login html page';Model,主要任务就是把数据库或者其他文件系统的数据按 照我们需要的方式读取出来。
private $route;
View,主要负责页面的,把数据以html的形式显示给用户。
$start = microtime(true);
if (!in_array($object,$valid)){
第二、程序的架构更加 清晰明了。
}
$valid = array( "library",
}
"view",
}
}
public static function initialize() {
{
self::$loaded[$object]= new $object();
<?php
initializer.php文件如下:
我们来看core/ini.php
//set_include_path — Sets the include_path configuration option
if (!isset($path[0])){
{
复制代码 代码如下:
Controller,主要负责业务逻辑,根据用户的 Request进行请求的分配,比如说显示登陆界面,就需要调用一个控制器userController的方法loginAction来显示。<?php
OK,我们一个简单的,MVC结构,就这样,当然这里还不能算是一个很完整的MVC,因为这里还没有涉及到View和Model,有空我再这里丰富。
router.php
$this->route = $route;
else
//user.php
var_dump($params);
复制代码 代码如下:
接下来我们看下面一句
{
那么从上面的地址,我们可以拿到controller是user,action似乎profile,参数是id以及3
复制代码 代码如下:
}第一、一些系统全局处理的变量,类,方法都可以在这里进行处理。 比如说你要对数据进行初步的过滤,你要模拟session处理,你要定义一些全局变量,甚至你要注册一些对象或者变量到注册器里面。
}
这个文件首先设置了include_path,也就是我们如果要找包含的文件,告诉系统在这个目录下查找。其实我们定义__autoload()方法,这个方法是在PHP5增加的,就是当我们实例化一个函数的时候,如果本文件没有,就会自动去加载文件。官方的解释是:
这句话的意思很明了,就是拿到URL解析的结果,然后通过dispatcher来分发controlloer及action来Response给用户
require_once("{$object}.php");
set_include_path(get_include_path().PATH_SEPARATOR . "core/main");
{
$path = array_keys($_GET);
$app->setParams($params);
<?php
这个文件就只有4句,我们现在一句句来分析。
public static function dispatch($router)
$this->params=$routeParts;
我们在app/controllers/下创建一个user.php文件
好,我们来看下dispatcher.php文件
首先创建单点入口,即bootstrap文件index.php,作为整个MVC系统的唯一入口。
}
public function __construct()
global $app;
"helper",
throw new Exception("Not a valid object '{$object}' to load");
}
Tota1l time for dispatching is : ".(microtime(true)-$start)." seconds.";
set_include_path(get_include_path() . PATH_SEPARATOR . "core/main");
$routeParts = split( "/",$route);
}
<?php
include(”core/ini.php”);
//include_once("core/config/config.php");
?> private $controller;
public function getParams() {
echo $output;
set_include_path(get_include_path().PATH_SEPARATOR . "core/main/cache");
class dispatcher
if (empty($this->action)) $this->action="main";
{
$params = $router->getParams();
$path[0] = "index";
这个文件就是去加载对象,因为以后我们可能会丰富这个MVC系统,会有model,helper,config等等的组件。如果加载的组件不在有效 的范围内,我们抛出一个异常。如果在的话,我们实例化一个对象,其实这里用了单件设计模式。也就是这个对象其实就只能是一个实例化对象,如果没有实例化, 创建一个,如果存在的,则不实例化。
这句话也很简单,就是加载loader函数的静态函数load,下面我们来loader.php
}
} function __autoload($object){
单点入口有几大好处:
"model",
private static $loaded = array();
} "db");
$this->action=isset($routeParts[1])? $routeParts[1]:"base";
include("core/ini.php");
<?php
public function getAction() {
复制代码 代码如下:
"hook",}
这个类很明显,就是拿到$router来,寻找文件中的controller和action来回应用户的请求。
{
$this->controller=$routeParts[0];
"router",
private $action;
本文通过实例为大家介绍用php开发一个简单mvc的方法,起到势砖引玉的作用,本文比较适合刚接触mvc的朋友。
dispatcher::dispatch($router);
我们可以看到,首先我们是拿到$_GET,用户Request的URL,然后从URL里我们解析出Controller和Action,以及Params
if (!empty($default_controller))
$router = loader::load(”router”);
本文为大家介绍如何用PHP来创建一个简单的MVC结构系统。
$controllerfile = "app/controllers/{$controller}.php";if (file_exists($controllerfile)){
public static function load($object){
"config",
然后,可以在浏览器中输入?user/register 或 ?user/login来测试下。
class router这个函数很简单,就只定义了一个静态函数,initialize函数,这个函数就是设置include_path,这样,以后如果包含文件,或者__autoload,就会去这些目录下查找。
class userif (isset($start)) echo " 什么是单点入口呢?所谓单点入口就是整个应用程序只有一 个入口,所有的实现都通过这个入口来转发。为什么要做到单点入口呢?
} {
public function login()
} 这就话就是调用initializer类的一个静态函数initialize,因为我们在ini.php,设置了include_path,以及定义了__autoload,所以程序会自动在core/main目录查找initializer.php.
复制代码 代码如下:
相关热词:
本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供用于网络技术学习参考,学习中请遵循相关法律法规!
本文地址: https://v30.fanwenzhu.com/jq/jc/7163.shtml
相关文章
热门TAG
win10 ecshop 主机 阿里云 解决 配置 C# C++ 解析 SQL语句 命令 Go语言 方法 CSS3 HTML5 CSS win7 MSSQL 服务器配置 IIS7.5 IIS7 IIS6 IIS CentOS 7 Linux oracle数据库 oracle phpcms discuz discuz教程最新文章
-
PHP识别相片是否是颠倒的
时间:2020-12-28
-
python编程有哪些ide
时间:2020-12-28
-
python开发工程师是做什么
时间:2020-12-28
-
php构造函数的作用
时间:2020-12-28
-
php怎么跟数据库连接
时间:2020-12-28
-
php实现顺序线性表
时间:2020-12-28
-
Python多重继承中的菱形继
时间:2020-12-28
-
php中break的作用
时间:2020-12-28
热门文章
-
php中常用的正则表达式使用方法
时间:2020-12-25
-
asp与php区别是什么?
时间:2020-12-27
-
PHP识别相片是否是颠倒的,并且重新摆正
时间:2020-12-28
-
Yii授权之基于角色的存取控制 (RBAC)
时间:2020-12-23
-
php的一键安装包有哪些 php环境搭建
时间:2020-12-19
-
php实现对图片对称加解密(适用身份证加
时间:2020-12-25
-
php如何理解面向对象
时间:2020-12-28
-
超详细分析php docker的原理及作用
时间:2020-12-27
-
Python控制Excel实现自动化办公
时间:2020-12-23
-
session的作用是什么
时间:2020-12-25
