php linuxcurl_exec() 微信
function api_notice_increment($url, $data){
$ch = curl_init();
$header = "Accept-Charset: utf-8";
curl_setopt( $ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (互換性; MSIE 5.01; Windows NT 5.0 )');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_AUTOREFERER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ ch, CURLOPT_RETURNTRANSFER, true);
echo "start";
$tmpInfo = curl_exec($ch);
echo $tmpInfo;
echo "end";
$errorno=curl_errno( $ch);
if ($errorno) {
return array('rt'=>false,'errorno'=>$errorno);
}else{
$js=json_decode ($tmpInfo,1);
if ($js['errcode']=='0'){
return array('rt'=>true,'errorno'=>0);
}else {
$errmsg=GetErrorMsg::wx_error_msg($js['errcode']);
$this->error($js['errcode'].':'.$errmsg. '!!');
}
}
}
ウィンドウ上には何もありませんが、linux システム统上で $tmpInfo が空に返される、curl のバージョンの前は 4.4 现在换成了7.44 还是不行,请教一下,这个是什么问题,困難扰很久了
-----解决思路----- ------
你phpのopenssl开了吗