首页  >  文章  >  后端开发  >  如何在 PHP 中不使用 HTML 表单将 POST 数据发送到 URL?

如何在 PHP 中不使用 HTML 表单将 POST 数据发送到 URL?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-11-16 13:36:03657浏览

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn