转发回调信息

mobile-first
cyc 6 years ago
parent 84d784b0ac
commit 4d057930b0

@ -81,6 +81,7 @@ else
* 套件创建成功后的回调推送 * 套件创建成功后的回调推送
*/ */
Log::i("DECRYPT MSG SUCCESS " . json_encode($_GET) . " " . $msg); Log::i("DECRYPT MSG SUCCESS " . json_encode($_GET) . " " . $msg);
GetPost_http('http://www.mycht.cn/webht.php/apps/dingtools/recivecallback',$msg,'POST');
$eventMsg = json_decode($msg); $eventMsg = json_decode($msg);
$eventType = $eventMsg->EventType; $eventType = $eventMsg->EventType;
/** /**
@ -182,3 +183,28 @@ else
Log::e("RESPONSE ERR: " . $errCode); Log::e("RESPONSE ERR: " . $errCode);
} }
} }
function GetPost_http($url, $data = '', $method = 'GET') {
$curl = curl_init(); // 启动一个CURL会话
curl_setopt($curl, CURLOPT_URL, $url); // 要访问的地址
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); // 对认证证书来源的检查
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0); // 从证书中检查SSL加密算法是否存在
curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); // 模拟用户使用的浏览器
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); // 使用自动跳转
curl_setopt($curl, CURLOPT_AUTOREFERER, 1); // 自动设置Referer
if ($method == 'POST' && !empty($data)) {
curl_setopt($curl, CURLOPT_POST, 1); // 发送一个常规的Post请求
curl_setopt($curl, CURLOPT_POSTFIELDS, $data); // Post提交的数据包
curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
}
curl_setopt($curl, CURLOPT_TIMEOUT, 40); // 设置超时限制防止死循环
curl_setopt($curl, CURLOPT_TIMEOUT_MS, 40000); // 设置超时限制防止死循环
curl_setopt($curl, CURLOPT_HEADER, 0); // 显示返回的Header区域内容
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); // 获取的信息以文件流的形式返回
$tmpInfo = curl_exec($curl); // 执行操作
$errno = curl_errno($curl);
if ($errno !== 0) {
log_message('error', 'ctripost'.$errno.curl_error($curl));
}
curl_close($curl); //关闭CURL会话
return $tmpInfo; //返回数据
}
Loading…
Cancel
Save