PHP xpath() 函数

定义和用法

xpath() 函数运行对 XML 文档的 XPath 查询。

如果成功,则返回包含 SimpleXMLElement 对象的一个数组。如果失败,则返回 false。

语法

  1. class SimpleXMLElement
  2. {
  3. string xpath(path)
  4. }
参数 描述
path 必需。XPath 路径。

例子

XML 文件:

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <note>
  3. <to>George</to>
  4. <from>John</from>
  5. <heading>Reminder</heading>
  6. <body>Don't forget the meeting!</body>
  7. </note>

PHP 代码:

  1. <?php
  2. $xml = simplexml_load_file("test.xml");
  3.  
  4. $result = $xml->xpath("from");
  5.  
  6. print_r($result);
  7. ?>

输出:

  1. Array
  2. (
  3. [0] => SimpleXMLElement Object
  4. (
  5. [0] => John
  6. )
  7. )