且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

PHP cURL发布请求不起作用

更新时间:2023-02-24 15:19:42

您错过了要通过请求获得的 CURLOPT_POSTFIELDS .如此处所述,您将需要设置以下字段:

You're missing the CURLOPT_POSTFIELDS you wanna get by the request. As explained here you're gonna need to set those fields:

<?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, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
            "postvar1=value1&postvar2=value2&postvar3=value3");

// in real life you should use something like:
// 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 { ... }

?>