-
减少代码冗余,降低编程错误,便于维护升级查看全部
-
//***test.php** <?php //浏览者调用控制器--->控制器选取模型--->模型与视图匹配--->echo require_once('testController.class.php'); require_once("testModel.class.php"); require_once("testView.class.php"); $testController = new testController(); $testController->show(); ?> //*******testController.class.php***** <?php header("Content-type:charset=utf-8"); class testController{ function show(){ //控制器选取适合的模型 $testModel=new testModel(); //将模型中的“hello,world”赋值给$data $data=$testModel->get(); //将模型中的数据填充到视图 $testView=new testView(); //视图内容呈现 $testView->display($data); } } //**testModel.class.php*** <?php class testController{ function show(){ //控制器选取适合的模型 $testModel=new testModel(); //将模型中的“hello,world”赋值给$data $data=$testModel->get(); //将模型中的数据填充到视图 $testView=new testView(); //视图内容呈现 $testView->display($data); } } //*******testView.class.php**** <?php header("Content-type:charset=utf-8"); //view---样式的呈现 class testView{ function display($data){ echo $data; } }查看全部
-
mvc运行流程查看全部
-
...查看全部
-
...查看全部
-
...查看全部
-
...查看全部
-
能不能顺便讲一下主流的论坛系统,如DIScuz之类的开源成熟应用。查看全部
-
...查看全部
-
<?php clas Factory{ static fucntion create($type){ return new $type; } } $obj = Factory::create('mysql');查看全部
-
...查看全部
-
...查看全部
-
...查看全部
-
...查看全部
-
...查看全部
举报
0/150
提交
取消