为什么curl 打印XML 响应?

发布于 2024-12-06 20:15:58 字数 514 浏览 0 评论 0原文

我正在使用curl 来执行post 请求,由于某种原因它会打印xml 响应,这是我不希望发生的事情。我怎样才能摆脱这种行为?

/**
*   Send post request
**/
function post_request($sendHttpUrl, $data) {

    $ch = curl_init($sendHttpUrl);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));      
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);       
    $response = curl_exec($ch);
    curl_close($ch);

    return $response;
}

I'm using curl to do post request, for some reason it prints xml response, which is something that I don't want to happend. how can I get rid of this behaviour?

/**
*   Send post request
**/
function post_request($sendHttpUrl, $data) {

    $ch = curl_init($sendHttpUrl);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));      
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);       
    $response = curl_exec($ch);
    curl_close($ch);

    return $response;
}

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

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

发布评论

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

评论(2

感性 2024-12-13 20:15:58

您在错误的变量上设置了 RETURNTRANSFER 标志。将 $curl 更改为 $ch

You've set the RETURNTRANSFER flag on the wrong variable. Alter $curl to $ch.

梦旅人picnic 2024-12-13 20:15:58

您的行中有一个拼写错误:“curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);”

应为:

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

You have a typo in line: "curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); "

It should read:

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