码迷,mamicode.com
首页 > Web开发 > 详细

ThinPHP_5的请求和响应

时间:2017-07-05 00:22:33      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:public   size   conf   推荐   bsp   think   default   set   通过   

  

thinkphp的请求对象request
  所有请求的参数都可以通过request接收

 方法一:

  request();助手函数

 方法二:

  use think\Request;
  Request::instance();[Resquest是单利模式折,只能通过instence获取实例]

方法三:

  直接注入到方法,给index方法传参,参数类型Request对象,起个名称,$request[推荐使用]
  use think\Request;
  public function index(Request $request)
  {
    dump($request);
  }

 


响应对象Response

  // 默认输出类型【惯例配置】
  ‘default_return_type‘ => ‘html‘,


  if(!in_array($type,[‘json‘,‘jsonp‘,‘xml‘])){
    $type = ‘json‘;
  }
  //动态配置默认输出类型
  Config::set(‘default_return_type‘,$type);

ThinPHP_5的请求和响应

标签:public   size   conf   推荐   bsp   think   default   set   通过   

原文地址:http://www.cnblogs.com/Caveolae/p/7118990.html

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