Correcting teacher:天蓬老师
Correction status:qualified
Teacher's comments:你这不能算实现, 应该写一个真实, 且相对完整的, 将学过的知识, 尽可能的用上
<?php
namespace __1206;
// 模型类:用于数据表的操作
class Model{
public function getData()
{
// 用二维数组来模拟从表中获取到的客户数据
return [
['id'=>1,'name'=>'不甜的淡月','sex'=>'女','mobile'=>'452557923','email'=>'452557923@qq.com','vip'=>'璀璨钻石'],
['id'=>2,'name'=>'溪上花间','sex'=>'女','mobile'=>'437366515','email'=>'437366515@qq.com','vip'=>'华贵铂金'],
['id'=>3,'name'=>'小小挽歌','sex'=>'男','mobile'=>'1047826346','email'=>'104782346@qq.com','vip'=>'荣耀黄金'],
['id'=>4,'name'=>'樱桃小丸子','sex'=>'男','mobile'=>'2244423838','email'=>'2244423838@qq.com','vip'=>'不屈白银'],
['id'=>5,'name'=>'梦幻泡沫','sex'=>'男','mobile'=>'2502704500','email'=>'2502704500@qq.com','vip'=>'英勇黄铜'],
];
}
}
<?php
namespace __1206;
// 视图类:渲染数据
class View{
public function fetch($data){
$table = '<table>';
$table .= '<caption>公交车群内成员信息</caption>';
$table .= '<tr><th>ID</th><th>昵称</th><th>性别</th><th>联系方式</th><th>邮箱</th><th>段位等级</th></tr>';
foreach ($data as $news) {
$table .= '<tr>';
$table .= '<td>' . $news['id'] . '</td>';
$table .= '<td>' . $news['name'] . '</td>';
$table .= '<td>' . $news['sex'] . '</td>';
$table .= '<td>' . $news['mobile'] . '</td>';
$table .= '<td>' . $news['email'] . '</td>';
$table .= '<td>' . $news['vip'] . '</td>';
$table .= '</tr>';
}
$table .= '</table>';
return $table;
}
}
echo '<style>
table {border-collapse: collapse; border: 1px solid; width: 600px;height: 200px}
caption {font-size: 1.2rem; margin-bottom: 10px;}
tr:first-of-type { background-color:pink;}
td,th {border: 1px solid}
td:first-of-type {text-align: center;}
</style>';
<?php
// 控制器: 将客户信息表展示出来
namespace __1206;
// 1. 加载模型
require 'Model.php';
// 2. 加载视图
require 'View.php';
//添加服务容器层
class Container{
// 容器属性, 就是一个数组,里面全是创建对象的方法
protected $instance = [];
// 1. 放进去: 将类的实例化过程绑定到容器中 $alias: 类实例的别名,
public function bind($alias, \Closure $process){
// 将类实例化的方法绑定/ 存储到服务容器中
$this->instance[$alias] = $process;
}
// 2. 取出来: 执行容器中的实例方法
public function make($alias, $params=[]){
return call_user_func_array($this->instance[$alias], []);
}
}
// 实例化容器
$container = new Container();
// 用到模型对象, 视图对象,将它们绑定到容器中
$container->bind('model', function () {return new Model();});
$container->bind('view', function () {return new View();});
// Facade技术: 规范/统一了对外部对象的调用方式, 全部改为了静态调用, 不管之前的方法是什么类型
// 添加Facade门面类
class Facade{
protected static $container = null;
protected static $data = [];
// 用服务容器给它初始化
public static function initialize(Container $container){
static::$container = $container;
}
// 用静态代理方式将模型中的getData()静态化
public static function getData(){
static::$data = static::$container->make('model')->getData();
}
// 用静态代理方式将视图中的fetch()静态化
public static function fetch(){
return static::$container->make('view')->fetch(static::$data);
}
}
class Student extends Facade{
//...
}
// 3. 创建控制器
class Controller{
public function __construct(Container $container){
// 调用Facade里面的初始化方法
Student::initialize($container);
}
public function index(){
// 3.1 获取数据
Student::getData();
// 3.2 渲染模板
return Student::fetch();
}
}
// 4. 客户端调用/访问类成员 将模型对象与视图对象,以参数的方式再次注入到控制器的方法
$controller = new Controller($container);
echo $controller->index();
感觉mvc模式挺简单的,或许是我了解的还不够深入吧。看来还是需要更进一步的加强学习。