將資料發佈到PHP 中的URL
將POST 資料傳送到PHP 的URL 是一項常見任務,尤其是在使用Web 服務時或從腳本提交表單。在本文中,我們將探索一種不使用 HTML 表單來實現此目的的方法。
Curl 來救援
PHP 提供了curl 庫,它允許我們與網路請求互動。我們將使用curl來發送POST資料。
// Sample data to send (in a real application, these variables will be dynamic) $myVar1 = 'value 1'; $myVar2 = 'value 2'; // URL to post data to $url = 'http://www.example.com/form.php'; // Create a cURL handle $ch = curl_init($url); // Set cURL options curl_setopt($ch, CURLOPT_POST, 1); // Set as POST request curl_setopt($ch, CURLOPT_POSTFIELDS, "myVar1=$myVar1&myVar2=$myVar2"); // Set POST data curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // Follow redirects curl_setopt($ch, CURLOPT_HEADER, 0); // Do not return headers in response curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Return the response as a string // Execute the cURL request $response = curl_exec($ch); // Close the cURL handle curl_close($ch); // Process the response // In this example, a successful response would likely indicate that the form on the target page was submitted
此腳本會將POST資料傳送至指定的URL,來自伺服器的回應將儲存在$response中。請記得將 $myVar1、$myVar2 和 $url 替換為您的實際資料和目標 URL。
以上是如何在 PHP 中不使用 HTML 表單將 POST 資料傳送到 URL?的詳細內容。更多資訊請關注PHP中文網其他相關文章!