使用curl获取http post响应主体

发布于 2024-12-03 19:05:23 字数 465 浏览 0 评论 0原文

所以我有以下代码片段,

$ch = curl_init();

//Set the URL
curl_setopt($ch, CURLOPT_URL, $jURL);
//Enable curl response
curl_setopt(CURLOPT_RETURNTRANSFER, true);
//Enable POST data
curl_setopt($ch, CURLOPT_POST, true);
//Use the $pData array as the POST data
curl_setopt($ch, CURLOPT_POSTFIELDS, $jData);

$result = curl_exec($ch);

echo 'The body of the response is ' . $result;

curl_close($ch);

我想打印出响应正文,但是上面的代码打印出数字 1。有没有办法在这里获取响应?

So I have the following code snippet

$ch = curl_init();

//Set the URL
curl_setopt($ch, CURLOPT_URL, $jURL);
//Enable curl response
curl_setopt(CURLOPT_RETURNTRANSFER, true);
//Enable POST data
curl_setopt($ch, CURLOPT_POST, true);
//Use the $pData array as the POST data
curl_setopt($ch, CURLOPT_POSTFIELDS, $jData);

$result = curl_exec($ch);

echo 'The body of the response is ' . $result;

curl_close($ch);

I would like to get the response body printed out, however my code above prints the number 1. Is there a way to get the response here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿挽旧人 2024-12-10 19:05:23

您缺少第一个参数:

curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);

You are missing the first argument:

curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文