我尝试加载此文档:
$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>';
它返回一堆空数组。我只是不明白为什么。