从饲料燃烧器中提取?

时间:2012-11-21 18:17:31

标签: feedburner

我想使用PHP提取http://rss.cnn.com/rss/edition.rss Feed中提到的每个项目的标题和图片,有人可以帮助我吗?

感谢名单

1 个答案:

答案 0 :(得分:0)

你可以尝试simplexml_load_string()
例如:

<?php
$string = <<<XML
<?xml version='1.0'?>
<document>
<title>Forty What?</title>
<from>Joe</from>
<to>Jane</to>
<body>
  I know that's the answer -- but what's the question?
</body>
</document>
XML;

$xml = simplexml_load_string($string);

var_dump($xml);
?> 
相关问题