woodenwang 发表于 2017-11-19 14:39

【笔记】 + php构造自己MVC的框架(一)

    小白一名,如有错误请各位大神及时斧正。

https://static.52pojie.cn/static/image/hrline/5.gif
分割线
https://static.52pojie.cn/static/image/hrline/5.gif

基础知识详解

    MVC(model view controller),一种软件设计典范,就是可以将业务逻辑和数据显示的分开来,将业务逻辑用
面向对象封装起来,在界面和用户围绕数据的交互情况下被改进和个性化定制的同时不需要重新编译业务逻辑。
    model,处理和数据的增删改查处理的部分;
    view,可直观看到的WEB页面;
    controller,向系统发出指令的工具和帮手。

https://static.52pojie.cn/static/image/hrline/5.gif
工作流程:
    第一步 浏览者:    调用户控制器,对它发出指令;
    第二步 控制器:    按照指令选取一个合适的模型;
    第三步 模型:    按照控制器逻辑取相应的数据;
    第四步 控制器:    按照指令选取一个合适的视图;
    第五步 视图:    按照照控制器逻辑取相应的数据;
https://static.52pojie.cn/static/image/hrline/5.gif
框架的创建:
    controller:控制器作用是调用模型和视图层,并将模型产生的数据传递给视图,并让相关试图去显示;
    model:模型的作用是获得数据并返回数据;
    view:试图的作用是将取出来的数据进行组织,美化等,并向用户最终的输出。

控制层:(controller/TestController.php)
class TestController{
    public function show(){
      $testModel=new TestModel();
      $testModel->display($data);
      $testView=new TestView();
      $testView->display($data);
    }
}

模板层:(model/TestModel.php)
class TestModel{
    public function get(){
      return "hello world";
    }
}

显示层:(view/TestView.php)
class TestView{
    public function display($data){
       return $data;
    }
}

入口文件:
require “controller/TestController.php”;
require “model/TestModel.php”;
require “view/TestView.php”;
$testController=new TestController();
$testController->show();


https://static.52pojie.cn/static/image/hrline/4.gif
    好啦,今天的学习笔记到这里,下次我们再见,希望可以得到大家多多鼓励,谢谢。

bianqi 发表于 2017-11-19 14:53

加油 小伙 挺6666的!!

coolk997 发表于 2017-11-19 15:56

学习了,很棒棒
页: [1]
查看完整版本: 【笔记】 + php构造自己MVC的框架(一)