simplexml_load_file无法显示冒号“:”的内容

时间:2016-12-27 02:51:05

标签: php scripting rss simplexml

我使用simplexml_load_file来提取 - >显示RSS提要。

我在显示包含冒号的值时遇到了麻烦。

例如:

我有什么想法可以显示clicked-tcount和comment-counts?

我的php循环是:

foreach($rss->channel->item as $item) {
if ($i < 1000)  { // parse only 10 items
    print $item->title.'<br>'.$item->ddescription.' ' .$item->pubDate.'<br /><br><br><BR>';
}

$i++;
}

0 个答案:

没有答案