我有我想要提取"提取"来自xml文件/ url的节点值。下面是我的代码,但我没有得到任何输出。
<?php
$url = "https://en.wikipedia.org/w/api.php?format=xml&action=query&prop=extracts&exintro=&explaintext=&titles=unix";
$xml = simplexml_load_file($url);
echo $xml->extract ;
?>
非常感谢任何帮助。
答案 0 :(得分:2)
$xml->extract
将起作用。
在查看api响应后,我能够使用完整路径获取并显示extract
节点:
$url = "https://en.wikipedia.org/w/api.php?format=xml&action=query&prop=extracts&exintro=&explaintext=&titles=unix";
$xml = simplexml_load_file($url);
echo $xml->query->pages->page->extract ;