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

请求接口数据

时间:2016-01-25 16:51:57      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

function https_post($url,$data = null){

$ch = curl_init ();
curl_setopt ( $ch, CURLOPT_URL, "http://127.0.0.1/api/wx/active/active_list" );
curl_setopt ( $ch, CURLOPT_POST, 1 );
curl_setopt ( $ch, CURLOPT_HEADER, 0 );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data );
$return = curl_exec ( $ch );
curl_close ( $ch );
return json_decode($return,true);
}

请求接口数据

标签:

原文地址:http://www.cnblogs.com/hgj123/p/5157716.html

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