透過 cURL 發佈資料
可以使用 cURL 來實作將 $_POST 值傳遞到不同的頁面。該過程涉及激活 HTTP POST 並將 cURL 的 post欄位設定為
實作:
$data = ['name' => 'Ross', 'php_master' => true]; // File upload support $data['file'] = '@/home/user/world.jpg'; $handle = curl_init($url); curl_setopt($handle, CURLOPT_POST, true); curl_setopt($handle, CURLOPT_POSTFIELDS, $data); curl_exec($handle); curl_close($handle);
選項:
指定發布資料。
發布資料編碼:
curl_setopt($handle, CURLOPT_POSTFIELDS, $data);
curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($data));
以上是如何使用cURL提交POST資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!