-
看查看全部
-
testView.class.php == class testView{ function display($data){ echo $data; } }查看全部
-
testModel.class.php == class testModel{ function get(){ return "hello world"; } }查看全部
-
testController.class.php == class testController{ function show(){ $model = new testModel(); $view = new testView(); $view->display($model->get()); } }查看全部
-
index.php ======================================= require_once('testController.class.php'); require_once('testModel.class.php'); require_once('testView.class.php'); $testController = new testController(); $testController->show();查看全部
-
require引入如果错误会报一个严重错误 而include只是警告查看全部
-
切换编码: UTF-8 无符号, 换行方式: 仅LF(UNIX).查看全部
-
插件名称要规范化查看全部
-
单一入口程序, index查看全部
-
MVC文件目录规范参考查看全部
-
视图的作用查看全部
-
模型的作用查看全部
-
控制器的作用查看全部
-
MVC工作流程查看全部
-
我就喜欢直接写php代码这么办?查看全部
举报
0/150
提交
取消