php实现MVC,phpmvc
在PHP中使用MVC越来越流行了,特别是在一些开源的框架当中。MVC足以应对大多数的情况,但还有一些情况是其不太适合的,如比较简单的个人博客,对于只有几百篇文章量级的博客,使用MVC让人觉得有些太复杂了;同样对于新浪等门户网站,使用MVC,将有大量的文件被加载,对于速度的影响是无法接受的。枫竹梦介绍MVC的基本原理及一种简单的实现。如下介绍内容适用PHP开发。
PHP中的MVC
MVC[1]在软件工程中是一种软件的架构。从php的角度来讲MVC有一些不同。
Model(模型),程序应用功能的实现,程序的逻辑的实现。在PHP中负责数据管理,数据生成。
View(视图),图形界面逻辑。在PHP中负责输出,处理如何调用模板、需要的资源文件。
Controller(控制器),负责转发请求,对请求处理。在PHP中根据请求决定调用的视图及使用的数据。
为什么使用MVC
MVC的主要作用是为了将代码分层、分类。
MVC的主要目的是为了解决Web开发中分离开发与设计工作,使其工作相对独立。
在这样的过程中还发现了其他的一些优点,网站的目录结构更加清晰,网站更易维护与扩展,可以实现模块的复用。
MVC实现
请求URL
首先,约定请求页面时的URL,以如下结构进行实现:
localhost/index.php?c=demo&a=index¶m=welcome
如果想得到更加优美的URL结构,可以进行优化,为由这URL结构优化与本文关系不大,以后进行分享。
从上面的参数可以看出,访问的文件是index.php
,同时含有3个参数分别为c
、a
、param
。
MVC目录结构
接着,规划MVC的目录结构如下:
001 |
/* |
002 |
├─www # 网站根目录 |
003 |
│ ├─controller # 控制器目录 |
004 |
│ │ ├─democontroller.php # demo控制器 |
005 |
│ ├─model # 模型目录 |
006 |
│ │ ├─model.php # model模型 |
007 |
│ ├─view # 视图目录 |
008 |
│ │ ├─index.php # index视图 |
009 |
│ ├─index.php # 入口文件 |
010 |
*/ |
控制器controller
将如下代码添加到controller/democontroller.php
文件中。
001 |
// controller/democontroller.php |
002 |
class DemoController
|
003 |
{ |
004 |
public function index()
|
005 |
{
|
006 |
echo 'hello world' ;
|
007 |
}
|
008 |
} // End of the class DemoController
|
009 |
010 |
// End of file democontroller.php |
在这个文件中仅仅定义了一个DemoController
的类,且其只包含一个index
方法,用于输出hello world
。
将下面代码添加到入口文件index.php
文件中。
001 |
//index.php |
002 |
require ( 'controller/democontroller.php' );
|
003 |
$controller = new DemoController();
|
004 |
$controller ->index();
|
005 |
006 |
// End of index.php |
在浏览器中使用上面的约定的URL进行访问,看到输出hello world
。当然如果你请求的URL不是那样,而是如下面所示也能得到同样的输出。
localhost/index.php?c=abc
发现URL中的参数还没有任何作用。
如果使用下面的URL进行访问,可以预见不会有任何输出。
localhost/controller/democontroller.php
可以看到要想访问这个网站并得到正确的结果,目前只能通过index.php
来访问,这也是为什么称它为入口文件的原因。现在无论参数如何只能访问同样一个页面,那么如何来决定显示不同的结果呢?或者调用不同的控制器呢?
改进入口文件
下面利用URL中的参数来决定使用哪个控制器。
001 |
//index.php |
002 |
// get runtime controller prefix |
003 |
$c_str = $_GET [ 'c' ];
|
004 |
// the full name of controller |
005 |
$c_name = $c_str . 'controller' ;
|
006 |
// the path of controller |
007 |
$c_path = 'controller/' . $c_name . '.php' ;
|
008 |
// get runtime action |
009 |
$method = $_GET [ 'a' ];
|
010 |
// load controller file |
011 |
require ( $c_path );
|
012 |
// instantiate controller |
013 |
$controller = new $c_name ;
|
014 |
// run the controller method |
015 |
$controller -> $method ();
|
016 |
017 |
// End of index.php |
同样在浏览器中使用上面的约定的URL进行访问,看到输出hello world
。代码中的注释已经说明了每一步的目的。当然可以通过改变URL参数中的c
与a
值来调用不同的controller及其方法,以输出不同的结果。
视图View
前面只是使用了控制器controller,同时在入口文件index.php
中实现了动态调用不同的控制器。接着加入视图将显示分离。
001 |
// view/index.php |
002 |
class Index {
|
003 |
public function display( $output ) {
|
004 |
// ob_start();
|
005 |
echo $output ;
|
006 |
}
|
007 |
} |
008 |
009 |
// End of index.php |
视图目录中的index.php文件中定义了Index
方法,且只有一个display()
函数,负责将传递给它的变量进行输出。
下面修改控制器文件。
001 |
// controller/democontroller.php |
002 |
class DemoController
|
003 |
{ |
004 |
private $data = 'Hello furzoom!' ;
|
005 |
public function index()
|
006 |
{
|
007 |
//echo 'hello world';
|
008 |
require ( 'view/index.php' );
|
009 |
$view = new Index();
|
010 |
$view ->display( $data );
|
011 |
}
|
012 |
} // End of the class DemoController
|
013 |
014 |
// End of file democontroller.php |
在控制器中定义了一个data
私有变量,index()方法不再直接输出,而是使用视图对象处理输出。此时,按上面的约定的URL进行访问时,将看到输出:
Hello furzoom!
可以根据不同的请求调用不同的视图类,以不同的形式显示数据。这样就将增加了视图的作用,设计人员可以只针对视图进行页面的设计。
模型Model
上面貌似已经很cool了,但是显示什么样的内容是在控制器中直接指定的,希望内容也由URL指定,这样将数据的处理交给模型来处理。
001 |
// model/model.php |
002 |
class Model {
|
003 |
private $data = array (
|
004 |
'title' => 'Hello furzoom' ,
|
005 |
'welcome' => 'Welcome to furzoom.com' ,
|
006 |
);
|
007 |
008 |
public function getData( $key ) {
|
009 |
return $this ->data[ $key ];
|
010 |
}
|
011 |
} |
012 |
013 |
// End of model.php |
视图文件model.php定义了一个Model
类,类中定义了一个getData()
的方法,用于返回请求的数据。
同时修改入口文件index.php如下:
001 |
//index.php |
002 |
// get runtime controller prefix |
003 |
$c_str = $_GET [ 'c' ];
|
004 |
// the full name of controller |
005 |
$c_name = $c_str . 'controller' ;
|
006 |
// the path of controller |
007 |
$c_path = 'controller/' . $c_name . '.php' ;
|
008 |
// get runtime action |
009 |
$method = $_GET [ 'a' ];
|
010 |
// get runtime parameter |
011 |
$param = $_GET [ 'param' ];
|
012 |
// load controller file |
013 |
require ( $c_path );
|
014 |
// instantiate controller |
015 |
$controller = new $c_name ;
|
016 |
// run the controller method |
017 |
$controller -> $method ( $param );
|
018 |
019 |
// End of index.php |
增加了一个参数$param
,将其作为控制器的方法调用参数。
还需要修改控制器的方法根据不同参数取得不同的数据。
001 |
// controller/democontroller.php |
002 |
class DemoController
|
003 |
{ |
004 |
// private $data = 'Hello furzoom!';
|
005 |
function index( $param )
|
006 |
{
|
007 |
// echo 'hello world';
|
008 |
require ( 'view/index.php' );
|
009 |
require ( 'model/model.php' );
|
010 |
$model = new Model();
|
011 |
$view = new Index();
|
012 |
$data = $model ->getData( $param );
|
013 |
$view ->display( $data );
|
014 |
}
|
015 |
} // End of the class DemoController
|
016 |
017 |
// End of file democontroller.php |
包含需要的视图文件和模型文件,然后生成视图与模型文件,接着通过模型对象取得数据,再用视图对象来输出取得的数据。
此时,在浏览器中使用上面的约定的URL进行访问,将得到输出如下:
Welcome to furzoom.com
如下图:
至此PHP的MVC模式已经基本介绍完成了,剩余的工作就是根据需要进行添加扩充了,很简单吧!!
参考文章
[1] http://zh.wikipedia.org/wiki/MVC
[2] http://blog.chinaunix.net/uid-20761674-id-75075.html
[3] http://wo.zdnet.com.cn/blog-476979-6965.html
[4] http://www.cnblogs.com/cocowool/archive/2009/09/08/1562874.html
转载请注明:http://furzoom.com/php-instantiate-mvc/ By 枫竹梦

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
