我想使用SimpleXML來閱讀我們的新聞RSS源,但它不輸出任何東西。SimpleXML RSS幫助
這裏是我的代碼:
<?php
$rss = simplexml_load_file('http://news.stanford.edu/rss/index.xml');
?>
<h1><?php echo $rss->title; ?></h1>
<ul>
<?php
foreach($rss->item as $e) {
echo "<li><a href=\"".$e->link['href']."\">";
echo $e->title;
echo "</a></li>\n";
}
?>
在你的error_log什麼?如果你'var_dump($ rss)'會發生什麼? – xylar 2011-05-18 22:12:04