php simplexml_load_file

时间:2009-09-25 20:05:18

标签: php xml simplexml

我是PHP的新手,这可能是一个愚蠢的问题,所以不要因为我不明白而投票给我......

php -r "print_r(simplexml_load_file('http://twitter.com/statuses/user_timeline/31139114.rss'));"

让我们以此为例,通过运行此命令,我得到(在屏幕上)XML输出。

我的问题是可以保存这些数据,而不仅仅是屏幕,而是保存在一个文件中,然后读取该文件并完全相同,就好像你已经做了那个simplexml_load_file()

1 个答案:

答案 0 :(得分:6)

您可以使用file_get_contents之类的内容下载数据;它会在一个PHP字符串中为您提供整个XML。
例如:

$xml = file_get_contents('http://twitter.com/statuses/user_timeline/31139114.rss');

$xml现在包含XML字符串。


然后,您可以使用file_put_contents将该字符串写入文件。
例如:

file_put_contents('/home/squale/developpement/tests/temp/test.xml', $xml);

并且,从命令行检查文件:

$ cat test.xml                                                                                                                                                                                                   
<?xml version="1.0" encoding="UTF-8"?>                                                                                                                                                                           
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">                                                                                                                                                     
  <channel>                                                                                                                                                                                                      
    <title>Twitter / eBayDailyDeals</title>                                                                                                                                                                      
    <link>http://twitter.com/eBayDailyDeals</link>                                                                                                                                                               
    <atom:link type="application/rss+xml" href="http://twitter.com/statuses/user_timeline/31139114.rss" rel="self"/>                                                                                             
    <description>Twitter updates from eBay Daily Deals / eBayDailyDeals.</description>                                                                                                                           
    <language>en-us</language>                                                                                                                                                                                   
    <ttl>40</ttl>                                                                                                                                                                                                
    <item> 
...
...


之后,您可以使用simplexml_load_file从该文件中读取。
例如:

$data = file_get_contents('/home/squale/developpement/tests/temp/test.xml');

$data现在包含您的XML字符串; - )


考虑从远程服务器获取的XML是一个字符串,不需要序列化它; file_put_contents + fopen + fwrite更容易fclose; - )