使用维基百科 API 链接获取一些关于一些世界知名人物的基本信息。
现在,我的问题 我愿意分析 xml,以便在 之间获取这些基本信息以显示 。
这里是如果正确的话我愿意使用的代码 ~ 感谢< a href=" https://stackoverflow.com/uss/1179287/cckep>ccKep ~
<?PHP
ini_set("user_agent","Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1");
$url = "http://en.wikipedia.org/w/api.php?format=xml&action=query&list=search&srsearch=Richard Maibaum&srlimit=1";
$xml = simplexml_load_file($url);
$extracts = $xml->xpath("/api/query/search");
echo $extracts["0"];
?>
但它失败并给予空白输出
所以,任何帮助~谢谢~谢谢