$member_controller = controller('Member/Member');现处于channe模块的控制器下去实例化member模块的控制器,实例化报错如下:[0] ClassNotFoundException in Loader.php line 437
类不存在:app\common\model\MemberModel
if (class_exists($class)) {
$model = new $class();
} else {
$class = str_replace('\\' . $module . '\\', '\\' . $common . '\\', $class);
if (class_exists($class)) {
$model = new $class();
} else {
throw new ClassNotFoundException('class not exists:' . $class, $class);求解?这个是什么情况以及如何处理,谢谢大大们解答! 最佳答案