PHP RSS解析器 - - 不工作

时间:2015-12-07 20:28:22

标签: php wordpress xml-parsing rss

您好我正在解析此Feed并且似乎无法使其正常工作

<?php
$url = "http://insite.unthsc.edu/dailynews/category/campus-news/feed/";
$xml = simplexml_load_file($url);
print_r($xml);
?>

当我输出pre时,我得到this 我之前已经为其他feed和xml文件做过这样的事情但是在我的生活中无法弄清楚为什么它这次没有工作。

由于

1 个答案:

答案 0 :(得分:0)

问题出现在错误消息中:您需要在加载XML资源之前进行身份验证

在隐身窗口中打开the link,或

curl http://insite.unthsc.edu/dailynews/category/campus-news/feed/

并且您将看到PHP看到的内容。