PHP cURL HTTP POST 範例
使用 Web 應用程式時,通常需要向遠端伺服器傳送 HTTP 請求。在 PHP 中,cURL 擴充功能提供了一種強大且通用的方法來實現此目的。本文示範如何使用 PHP cURL 執行 HTTP POST。
問題陳述
假設我們要將以下資料傳送至www.example.com:
username=user1, password=passuser1, gender=1
伺服器的預期回應是"result =OK"。
PHP cURL 解決方案
要使用PHP cURL 傳送HTTP POST 要求,請依照下列步驟操作:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/tester.phtml");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array('postvar1' => 'value1')));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $server_output = curl_exec($ch);
curl_close($ch);
if ($server_output == "OK") { ... } else { ... }
代碼示例
這是一個完整的PHP 範例,示範了上述步驟:
// A very simple PHP example that sends a HTTP POST to a remote site $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://www.example.com/tester.phtml"); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array('postvar1' => 'value1'))); // Receive server response ... curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $server_output = curl_exec($ch); curl_close($ch); // Further processing ... if ($server_output == "OK") { ... } else { ... }
以上是如何使用 PHP cURL 執行 HTTP POST 請求?的詳細內容。更多資訊請關注PHP中文網其他相關文章!