diff options
author | Christian Stocker <chregu@php.net> | 2002-03-11 22:37:32 +0000 |
---|---|---|
committer | Christian Stocker <chregu@php.net> | 2002-03-11 22:37:32 +0000 |
commit | 48da8216f94738460286f730607ef2fdd34a16f9 (patch) | |
tree | 621898226bb036b243ae6cc1639f5fcbecbc8227 /ext/domxml/php_domxml.h | |
parent | d5b1a4f811bb42a79d9465fd483c46a60cf7df32 (diff) | |
download | php-git-48da8216f94738460286f730607ef2fdd34a16f9.tar.gz |
@ implemented domxml_elem_get_elements_by_tagname
@ new function domxml_doc_get_elements_by_tagname
@ new function domxml_doc_get_element_by_id (chregu)
Diffstat (limited to 'ext/domxml/php_domxml.h')
-rw-r--r-- | ext/domxml/php_domxml.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/domxml/php_domxml.h b/ext/domxml/php_domxml.h index c0064e569f..618b50b117 100644 --- a/ext/domxml/php_domxml.h +++ b/ext/domxml/php_domxml.h @@ -141,8 +141,7 @@ PHP_FUNCTION(domxml_elem_set_attribute); PHP_FUNCTION(domxml_elem_remove_attribute); PHP_FUNCTION(domxml_elem_get_attribute_node); PHP_FUNCTION(domxml_elem_set_attribute_node); -PHP_FUNCTION(domxml_elem_get_element_by_tagname); - +PHP_FUNCTION(domxml_elem_get_elements_by_tagname); /* Class CData methods */ PHP_FUNCTION(domxml_cdata_length); @@ -166,6 +165,8 @@ PHP_FUNCTION(xpath_new_context); PHP_FUNCTION(xpath_eval); PHP_FUNCTION(xpath_eval_expression); PHP_FUNCTION(xpath_register_ns); +PHP_FUNCTION(domxml_doc_get_elements_by_tagname); +PHP_FUNCTION(domxml_doc_get_element_by_id); #endif #if defined(LIBXML_XPTR_ENABLED) PHP_FUNCTION(xptr_new_context); |