我正在从 RSS 提要中提取信息:
如果您使用浏览器导航到该页面,您会得到一个漂亮的 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。