diff options
author | Sterling Hughes <sterling@php.net> | 2003-05-26 03:57:41 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2003-05-26 03:57:41 +0000 |
commit | afc21967157e26e007924c5aaf7b57d0068e4711 (patch) | |
tree | 25236feedb69c957234f8bce10b2d14417e13d48 /ext/simplexml/php_simplexml.h | |
parent | 380bf699ae1afad672cf737d70dffeb283e73f4c (diff) | |
download | php-git-afc21967157e26e007924c5aaf7b57d0068e4711.tar.gz |
add support for querying nodes with xpath expressions.
Diffstat (limited to 'ext/simplexml/php_simplexml.h')
-rw-r--r-- | ext/simplexml/php_simplexml.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/simplexml/php_simplexml.h b/ext/simplexml/php_simplexml.h index ebe165a8f5..2861ab9753 100644 --- a/ext/simplexml/php_simplexml.h +++ b/ext/simplexml/php_simplexml.h @@ -53,6 +53,7 @@ PHP_MINFO_FUNCTION(simplexml); typedef struct { zend_object zo; xmlDocPtr document; + xmlXPathContextPtr xpath; xmlNodePtr node; } php_sxe_object; |