我正在尝试阅读和解析 RSS 提要。RSS 提要的标题如下:
<rss version="2.0" xmlns:content="http://www.mywebsite.com" xmlns:media="http://search.yahoo.com/mrss/" >
我成功地从项目中检索<title>
和检索,<link>
但我似乎找不到检索<content:encoded>
孩子的方法。这就是我到目前为止所尝试的:
<?php
//error_reporting(E_ALL);
//ini_set("display_errors", 1);
....
$x=$xmlDoc->getElementsByTagName('item');
foreach($x as $item) {
$link = $item->getElementsByTagName('link')->item(0)->nodeValue;
$title = $item->getElementsByTagName('title')->item(0)->nodeValue;
$content = $item->getElementsByTagNameNS('http://www.mywebsite.com', 'encoded')->item(0);
echo ("<p><a href='" . $link. "'>" . $title . "</a></p><p>" . $content . "</p>");
}
?>
您可以想象$content
即使我尝试获取nodeValue
属性也是空的,我在这里缺少什么?