PHP curl傳輸json數據及接收


……

//開啟header
curl_setopt($curl, CURLOPT_HEADER, true);
//類型為json
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
    'Content-Type: application/json; charset=utf-8'
)
);

//post傳遞
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, ($json));
……

……

//接收 $json = file_get_contents("php://input"); $json = json_decode($json, true); print_r($json); ……

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM