simplexml_load_file文档为空

时间:2012-10-18 15:05:13

标签: php xml-parsing simplexml

我正在从RSS源中提取:

http://search.library.utoronto.ca/UTL/index?Ntt=starcraft&Ntk=Anywhere&Ntx=mode+matchallpartial&N=0&Nu=p_work_normalized&Np=1&rss=1

如果您使用浏览器导航到该浏览器,则会获得一个不错的xml页面。

然而,如果我这样做

simplexml_load_file("the above url");
在PHP中,我得到

1: parser error : Document is empty
1: parser error : Start tag expected, '<' not found in my_file

那么为什么浏览器可以获得它而不是PHP?

如果我执行file_get_contents("the above url"),则函数失败并返回FALSE。

1 个答案:

答案 0 :(得分:1)

该网站阻止了PHP的请求。

首次运行

<?php
ini_set('user_agent', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20100101 Firefox/16.0');

(或其他一些有效的用户代理),它将起作用。