当前位置:Gxlcms > PHP教程 > xpath查找xml节点和节点属性的值

xpath查找xml节点和节点属性的值

时间:2021-07-01 10:21:17 帮助过:19人阅读

xpath查找xml节点和节点属性的值
  1. $xml = "
  2. world
  3. ";
  4. function get_data_from_xml($res_data,$node)
  5. {
  6. $xml = simplexml_load_string($res_data);
  7. $result = $xml->xpath($node);
  8. while(list( , $node) = each($result))
  9. {
  10. return $node;
  11. }
  12. }
  13. // 'hello world';
  14. echo get_data_from_xml($xml, '/node/title/@src[.]'), ' ' , get_data_from_xml($xml, '/node/title');

人气教程排行