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