downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<domxml_xslt_versionxpath_eval>
Last updated: Thu, 26 Jun 2008

xpath_eval_expression

(PHP 4 >= 4.0.4)

xpath_eval_expression — Evaluates the XPath Location Path in the given string

Description

XPathContext
XPathObject xpath_eval_expression ( string $expression [, domnode $contextnode ] )
XPathObject xpath_eval_expression ( XPathContext $xpath_context , string $expression [, domnode $contextnode ] )

Example #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'));

?>

The above example will output:

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().



add a noteadd a note User Contributed Notes
Evaluates the XPath Location Path in the given string
There are no user contributed notes for this page.




<domxml_xslt_versionxpath_eval>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs