使用simplexml_load_file空数组(Simplexml_load_file empty

2019-10-17 13:08发布

我尝试加载该文件:

$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>';

它返回一个空一堆阵列。 我只是不明白为什么。

Answer 1:

使用simplexml_load_file返回一个对象,而不是阵列。 所以你不能只是print_r的打印。 你需要做更多的工作,通过为SimpleXMLElement导航。



文章来源: Simplexml_load_file empty array