PHP傳送『POST』和接收『file_get_contents(‘php://input’)』JSON請求
PHP傳送『POST』和接收『file_get_contents(‘php://input’)』JSON請求
資料來源: https://codertw.com/%E7%A8%8B%E5%BC%8F%E8%AA%9E%E8%A8%80/104683/
PHP傳送JSON POST
$url = "http://example.com/request/post/json"; $data = json_encode(["foo" => "bar"]); $curl = curl_init($url); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array("Content-type: application/json")); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $data); curl_exec($curl); curl_close($curl);
PHP接受JSON POST
$data = json_decode(file_get_contents('php://input'), true);
PS.
php://input 是個可以訪問請求的原始資料的只讀流。 POST 請求的情況下,最好使用 php://input 來代替 $HTTP_RAW_POST_DATA](http://php.net/manual/zh/reserved.variables.httprawpostdata.php),因為它不依賴於特定的 php.ini 指令。 而且,這樣的情況下 [$HTTP_RAW_POST_DATA 預設沒有填充, 比啟用 always_populate_raw_post_data 潛在需要更少的記憶體。 enctype="multipart/form-data" 的時候 php://input 是無效的。 在 PHP 5.6 之前 php://input 開啟的資料流只能讀取一次; 資料流不支援 seek 操作。 不過,依賴於 SAPI 的實現,請求體資料被儲存的時候, 它可以開啟另一個 php://input 資料流並重新讀取。 通常情況下,這種情況只是針對 POST 請求,而不是其他請求方式,比如 PUT 或者 PROPFIND。