diff options
author | Florian MARGAINE <florian@margaine.com> | 2014-09-26 18:25:56 +0200 |
---|---|---|
committer | Florian MARGAINE <florian@margaine.com> | 2014-09-27 01:27:46 +0200 |
commit | 9469db93110b2185f019da0dd66d3537c1a4b7a4 (patch) | |
tree | 3d985dfe2f33cc4fe411cb3cd2f7ced007e6a90b /ext/dom/dom_properties.h | |
parent | 71c39612d5702920dfd198b37254b8bb06454b47 (diff) | |
download | php-git-9469db93110b2185f019da0dd66d3537c1a4b7a4.tar.gz |
DOMNodeList elements are accessible through array notation
Fixes #67949
Diffstat (limited to 'ext/dom/dom_properties.h')
-rw-r--r-- | ext/dom/dom_properties.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/dom/dom_properties.h b/ext/dom/dom_properties.h index a658b1d843..9d82d0e860 100644 --- a/ext/dom/dom_properties.h +++ b/ext/dom/dom_properties.h @@ -137,6 +137,8 @@ int dom_node_text_content_write(dom_object *obj, zval *newval TSRMLS_DC); /* nodelist properties */ int dom_nodelist_length_read(dom_object *obj, zval **retval TSRMLS_DC); +xmlNodePtr dom_nodelist_xml_item(dom_nnodemap_object *objmap, long index); +xmlNodePtr dom_nodelist_baseobj_item(dom_nnodemap_object *objmap, long index); /* notation properties */ int dom_notation_public_id_read(dom_object *obj, zval **retval TSRMLS_DC); |