糖尿病康复,内容丰富有趣,生活中的好帮手!
糖尿病康复 > post php数据 php post数据

post php数据 php post数据

时间:2023-08-02 16:50:12

相关推荐

post php数据 php post数据

function http_post_data($url, $data_string)

{

$ch = curl_init();

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);//https请求

curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json; charset=utf-8',

'Content-Length: ' . strlen($data_string)));

ob_start();

curl_exec($ch);

$return_content = ob_get_contents();

ob_end_clean();

$return_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);

return array($return_code, $return_content);

}

$url = "http://write./postedit";//接口地址

$data = json_encode(array(

'ID'=>$ID,

'USERID'=>$USERID,

'MIID'=>$MIID));//需要发送数据 list($return_code, $return_content) = http_post_data($url, $data);

如果觉得《post php数据 php post数据》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。