$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url); //url地址
curl_setopt($ch, CURLOPT_POST, true); //是否post請求
curl_setopt($ch, CURLOPT_POSTFIELDS, $data); //post請求傳遞的數(shù)據(jù)
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);//設(shè)置header
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);//返回獲取的輸出文本流
$response = curl_exec($ch); //獲取返回的數(shù)據(jù)
curl_close($ch); //關(guān)閉
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請
點(diǎn)擊舉報(bào)。