/** * curl方式发送post报文 * $remoteServer 请求地址 * $postData post报文内容 * $userAgent用户属性 * return 返回报文 */private function _curlRequest($remoteServer, $postData){ Log::write('发送post报文:址:'.$remoteServer , Log::INFO); Log::write('发送post报文:内容:'.json_encode($postData) , Log::INFO); $data_string = json_encode($postData); $ch = curl_init(); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_URL, $remoteServer); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json', 'Content-Length: ' . strlen($data_string)) ); $result = urldecode(curl_exec($ch)); curl_close($ch); return $data = empty($result) ? array() : json_decode($result, true); }
作者:virhuiai
链接:https://www.jianshu.com/p/d5e83023f8e4
点击查看更多内容
1人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦