我尝试加载该文件:
$url = "http://en.wikipedia.org/w/api.php?action=query&titles=Electrophoresis&prop=langlinks&lllimit=500";
当我在浏览器中运行它,一切都很好。 当我这样做:
ini_set('user_agent', 'XX123456789 (localhost; myemailaddress)'); //sets info for authentication
$content = file_get_content($url);
var_dump($content);
它返回相同的XML文档作为我的浏览器显示。
然而,当我尝试
$content_arrays = Simplexml_load_file($content);
echo '<pre>', print_r($content_arrays), '</pre>';
它返回一个空一堆阵列。 我只是不明白为什么。