lichenhao
2016-11-03 04:10
Fatal error: Class 'M' not found in C:\xampp\htdocs\mvc\libs\Controller\testController.class.php on line 4
class testController{
public function show(){
$testModel= new M('test');
$data=$testModel->get();
$testView= new V('test');
$testView->display($data);
}
}
问题找到了 原因是大M方法已经在function文件中被实例化 所以直接调用大M方法就可以了 不用new
public function show(){
// $testModel= new M('test');
$testModel= M('test');
$data=$testModel->get();
$testView= new V('test');
$testView->display($data);
}
我也出现了这个问题,前面说的那个方法解决不了
老师演示的时候也没有说要已经纳入function.php文件啊
老师演示的时候也没有说要已经纳入function.php文件啊
我的也是这个问题
致命错误:类 M 没有被发现。
可能是你的function文件没有被引用
testController里面没有引用function.php文件
MVC架构模式分析与设计
82400 学习 · 929 问题
相似问题