<?php
/**
* 视图基类
*/
class View
{
protected $variables = array();
protected $_controller;
protected $_action;
function __construct($controller, $action)
{
$this->_controller = $controller;
$this->_action = $action;
}
/** 分配变量 **/
function assign($name, $value)
{
$this->variables[$name] = $value;
}
/** 渲染显示 **/
function render()
{
extract($this->variables);
$defaultHeader = APP_PATH . 'application/views/header.php';
$defaultFooter = APP_PATH . 'application/views/footer.php';
$controllerHeader = APP_PATH . 'application/views/' . $this->_controller . '/header.php';
$controllerFooter = APP_PATH . 'application/views/' . $this->_controller . '/footer.php';
// 页头文件
if (file_exists($controllerHeader)) {
include ($controllerHeader);
} else {
include ($defaultHeader);
}
// 页内容文件
include (APP_PATH . 'application/views/' . $this->_controller . 'https://www.jb51.net/' . $this->_action . '.php');
// 页脚文件
if (file_exists($controllerFooter)) {
include ($controllerFooter);
} else {
include ($defaultFooter);
}
}
}
这样我们的核心的PHP MVC框架就编写完成了,下面我们开始编写应用来测试框架功能。
4 应用
4.1 数据库部署
在 SQL 中新建一个 todo 数据库,使用下面的语句增加 item 数据表并插入2条记录:
CREATE DATABASE `todo` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE `todo`; CREATE TABLE `item` ( `id` int(11) NOT NULL auto_increment, `item_name` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; INSERT INTO `item` VALUES(1, 'Hello World.'); INSERT INTO `item` VALUES(2, 'Lets go!');
4.2 部署模型
然后,我们还需要在 models 目录中创建一个 ItemModel.php 模型,内容如下:
<?php class ItemModel extends Model { /* 业务逻辑层实现 */ }
模型内容为空。因为 Item 模型继承了 Model,所以它拥有 Model 的所有功能。
4.3 部署控制器
在 controllers 目录下创建一个 ItemController.php 控制器,内容如下:
<?php class ItemController extends Controller { // 首页方法,测试框架自定义DB查询 public function index() { $items = (new ItemModel)->selectAll(); $this->assign('title', '全部条目'); $this->assign('items', $items); } // 添加记录,测试框架DB记录创建(Create) public function add() { $data['item_name'] = $_POST['value']; $count = (new ItemModel)->add($data); $this->assign('title', '添加成功'); $this->assign('count', $count); } // 查看记录,测试框架DB记录读取(Read) public function view($id = null) { $item = (new ItemModel)->select($id); $this->assign('title', '正在查看' . $item['item_name']); $this->assign('item', $item); } // 更新记录,测试框架DB记录更新(Update) public function update() { $data = array('id' => $_POST['id'], 'item_name' => $_POST['value']); $count = (new ItemModel)->update($data['id'], $data); $this->assign('title', '修改成功'); $this->assign('count', $count); } // 删除记录,测试框架DB记录删除(Delete) public function delete($id = null) { $count = (new ItemModel)->delete($id); $this->assign('title', '删除成功'); $this->assign('count', $count); } }
4.4 部署视图
在 views 目录下新建 header.php 和 footer.php 两个页头页脚模板,内容如下。
header.php,内容:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title><?php echo $title ?></title> <style> .item { width:400px; } input { color:#222222; font-family:georgia,times; font-size:24px; font-weight:normal; line-height:1.2em; color:black; } a { color:blue; font-family:georgia,times; font-size:20px; font-weight:normal; line-height:1.2em; text-decoration:none; } a:hover { text-decoration:underline; } h1 { color:#000000; font-size:41px; letter-spacing:-2px; line-height:1em; font-family:helvetica,arial,sans-serif; border-bottom:1px dotted #cccccc; } h2 { color:#000000; font-size:34px; letter-spacing:-2px; line-height:1em; font-family:helvetica,arial,sans-serif; } </style> </head> <body> <h1><?php echo $title ?></h1> footer.php,内容: </body> </html>
然后,在 views/item 创建以下几个视图文件。
index.php,浏览数据库内 item 表的所有记录,内容:
<form action="<?php echo APP_URL ?>/item/add" method="post"> <input type="text" value="点击添加"> <input type="submit" value="添加"> </form> <br/><br/> <?php $number = 0?> <?php foreach ($items as $item): ?> <a href="<?php echo APP_URL ?>/item/view/<?php echo $item['id'] ?>" title="点击修改"> <span> <?php echo ++$number ?> <?php echo $item['item_name'] ?> </span> </a> ---- <a href="<?php echo APP_URL ?>/item/delete/<?php echo $item['id']?>">删除</a> <br/> <?php endforeach ?>