码迷,mamicode.com
首页 > 其他好文 > 详细

laravel中的请求信息和重定向

时间:2014-11-26 18:13:37      阅读:126      评论:0      收藏:0      [点我收藏+]

标签: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));

 

laravel中的请求信息和重定向

标签:style   blog   http   io   ar   color   使用   sp   on   

原文地址:http://www.cnblogs.com/xueyuwyz/p/4123694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!