将数据发布到 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中文网其他相关文章!