说明
XPathObject 
xpath_eval_expression ( XPathContext xpath_context, string expression )
| 警告 | 
本函数是实验性的。本函数的行为,包括函数名称以及其它任何关于本函数的文档可能会在没有通知的情况下随
PHP 以后的发布而改变。使用本函数风险自担。  | 
     
例子 1. xpath_eval_expression() Example 
<?php
  include("example.inc");
  if (!$dom = domxml_open_mem($xmlstr)) {     echo "Error while parsing the document\n";     exit; }
  $xpath = xpath_new_context($dom); var_dump(xpath_eval_expression($xpath, '/chapter/@language'));
  ?>
 |  
 上例将输出: object(XPathObject)(2) {
   ["type"]=>
   int(1)
   ["nodeset"]=>
   array(1) {
     [0]=>
     object(domattribute)(5) {
       ["type"]=>
       int(2)
       ["name"]=>
       string(8) "language"
       ["value"]=>
       string(2) "en"
       [0]=>
       int(7)
       [1]=>
       int(138004256)
     }
  }
} |  
  | 
    
     See also xpath_eval().