懒人6号
2016-12-27 23:52
为何testController.class.php 没有require testView.class.php以及 testModel.class.php 就能调用testView以及testModel? 求解一下??????谢谢!
require testView.class.php
require testModel.class.php
实际上是引用了,但并不是在testController.class.php里面引用的。
$testModel = M('test'); $data = $testModel->get(); $testView = V('test'); $testView->display($data);
细看源码,可以看到是调用了M 和V函数
当去查看M和V函数的时候 会看到在该函数里面进行了require操作,并将该对象实例化后的对象进行了return操作
MVC架构模式分析与设计
82396 学习 · 929 问题
相似问题