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

接口调用 POST

时间:2017-04-18 19:03:38      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:请求   方式   form   head   one   password   接口   UI   public   

/**
* 接口调用 POST
* @return [type] [description]
*/
public function portPhone(Request $request)
{
  $phone = $request->input(‘phone‘);

  $random = rand(100000,999999);

  $randoms = session::put(‘random‘,$random);


  $url = ‘http://api.chanyoo.cn/utf8/interface/send_sms.aspx‘;

  $data = array(‘username‘=>‘张三‘,
    ‘password‘=>‘***********‘,
    ‘receiver‘=>$phone,
    ‘content‘=>‘您的手机号:‘.$phone.‘,绑定验证码:‘.$random.‘。一天内提交有效!【****】‘

  );

 

  $postdata = http_build_query($data);

  //请求头信息、请求参数、请求方式
  $opts = array(
    ‘http‘ =>
      array(
        ‘method‘ => ‘POST‘,
        ‘header‘ => ‘Content-type: application/x-www-form-urlencoded‘,
        ‘content‘ => $postdata
      )
    );

  $context = stream_context_create($opts);

  $result = file_get_contents($url, false, $context);

   return $result;

}

接口调用 POST

标签:请求   方式   form   head   one   password   接口   UI   public   

原文地址:http://www.cnblogs.com/54sen/p/6729208.html

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