當我嘗試閱讀www.thetechjournal.com上的rss feed時,我什麼都沒有收到。他們使用wordpress生成rss,所以我認爲它與此有關。simplexml_load_file無法在www.thetechjournal.com上閱讀rss feed
<?php
$url = 'http://feeds.thetechjournal.com/TheTechJournal';
$rss = simplexml_load_file($url);
print_r($rss);
?>
更新:有問題的XML作爲圖像附加。
您可以使用該服務來檢查飼料是否是有效的(儘管它似乎並沒有被目前適合我加載)http://validator.w3.org/feed/ – IMSoP