php使用tp框架中使用空操作和空方法,不能定位到_empty()
<?php
namespace Home\Controller;
use Think\Controller;
class EmptyController extends Controller{
public function _empty() {
$this->show('404');
}
}
定义了一个空操作和空方法,不存在的空操作和空方法都能走到EmptyController ,
但是
已存在的类
下面写一个
不存在的方法
就提示
非法操作
了。
在每个类下面都写一个_empty()肯定是不现实的,这个控制器放的位置不对吗?
cyjjyc1
9 years, 9 months ago