我正在尝试使用以下代码在服务器端转储数据
$ch = curl_init('http://test.com/usage_log');
$data = array('abc' => $abc);
$post_data = $data;
log_message('error',http_build_query($post_data));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post_data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
下面是我用来接收数据的服务器端代码
$abc = $_REQUEST['abc'];
但我在服务器端得到了以下错误。
<p>Severity: Notice</p>
<p>Message: Undefined index: abc</p>
<p>Filename: controllers/Home.php</p>
<p>Line Number: 1529</p>
<p>Backtrace:</p>
使用卷曲
$info = curl_getinfo($ch);
print_r($info);
在卷曲闭合之前。