标签:style blog http io ar color 使用 sp on
Request::path(); //获取请求的路径 Request::is(‘admin/*‘); //判断是否符合指定模式 Request::url(); //获取请求的url Request::segment(1); //获取请求URL信息 Request::header("Content-Type"); Request::server(‘PATH_INFO‘); //$_SERVER数组中信息 Request::ajax() //如果是ajax请求则为true Request::secure() //是否使用HTTPs协议
重定向
//重定向 return Redirect::to(‘user/login‘); return Redirect::route(‘login‘); return Redirect::route(‘login‘,array(‘user‘=>1)); return Redirect::action(‘HomeController@index‘); return Redirect::action(‘HomeController@index‘,array(‘user‘=>1));
标签:style blog http io ar color 使用 sp on
原文地址:http://www.cnblogs.com/xueyuwyz/p/4123694.html