我想使用PHP提取http://rss.cnn.com/rss/edition.rss Feed中提到的每个项目的标题和图片,有人可以帮助我吗?
感谢名单
答案 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);
?>