如何在 PHP 中不使用 HTML 表單將 POST 資料傳送到 URL?

Mary-Kate Olsen
發布: 2024-11-16 13:36:03
原創
657 人瀏覽過

How to Send POST Data to a URL in PHP Without Using HTML Forms?

將資料發佈到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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板