/**
* 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);
}
网友评论