dongxiejie9387 2013-10-08 12:57 采纳率: 100%
浏览 75
已采纳

如何保存通过curl获取的xml文件?

I have this proxy done using curl. I t successfully gets the xml to be displayed in the page. I'm trying to save a copy locally with no success, i tried (already in the complete code below):

$fp = fopen('data.xml', 'w');
fwrite($fp, $xml);
fclose($fp);

But I got no error and an empty "data.xml" file...How can this be done? thanks

[EDIT2]: solved, i just added the flag: curl_setopt($session, CURLOPT_RETURNTRANSFER, true); and done! (updated in the code below The code with @spell suggestion.

define ('HOSTNAME', 'http://www.camara.gov.br');


$path = "http://www.camara.gov.br/SitCamaraWS/Deputados.asmx/ObterDeputados?";
$url = HOSTNAME.$path;

$session = curl_init($path);
curl_setopt($session, CURLOPT_HEADER, false);
curl_setopt($session, CURLOPT_HTTPGET, true);
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
curl_setopt($session, CURLOPT_USERAGENT, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36');

header("Content-Type: text/xml");


$xml = curl_exec($session);


curl_close($session);

file_put_contents ('./data.xml', $xml); 
?>
  • 写回答

1条回答 默认 最新

  • douzai9405 2013-10-08 13:15
    关注

    You can just use file_put_contents function.

    In your case it will be:

    // Make the call
    $xml = curl_exec($session);
    
    
    // done, shutDown.
    curl_close($session);
    
    if (file_put_contents ('./data.xml', $xml) !== false) {
         echo 'Success!';
    } else {
         echo 'Failed';
    }
    

    And

    But I got no error and an empty "data.xml" file

    Next time provide an error

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀