我想使用 PHP 提取http://rss.cnn.com/rss/edition.rss提要中提到的每个项目的标题和图像,有人可以帮我吗?
谢谢
您可以尝试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);
?>