class Index extends Controller
{
public function getpath(){
$module= $this->request->module();//获取模块
$controller=$this->request->controller();//获取控制器
$action=$this->request->action();//获取action
return '/'.$module.'/'.$controller.'/'.$action; //得到请求路径 /web/index/getpath
}
}