diff options
author | Christian Stocker <chregu@php.net> | 2003-04-05 19:56:41 +0000 |
---|---|---|
committer | Christian Stocker <chregu@php.net> | 2003-04-05 19:56:41 +0000 |
commit | 5dc852e734b492c1549a054661dd6b4fd1379f21 (patch) | |
tree | 0fb1b685e99d8414dcf5b63e31e3baad45138c18 /ext/domxml/php_domxml.h | |
parent | b0f630470bd5a41ee5c807c935bf884d875b1d2d (diff) | |
download | php-git-5dc852e734b492c1549a054661dd6b4fd1379f21.tar.gz |
@- Added domxml_doc_create_document_fragment() and
@ domxml_document_fragment_open_mem(string) method (Christian)
Useful for adding and parsing (well-balanced) document fragments.
- Bumped up API version number
Diffstat (limited to 'ext/domxml/php_domxml.h')
-rw-r--r-- | ext/domxml/php_domxml.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ext/domxml/php_domxml.h b/ext/domxml/php_domxml.h index 7f2977a59c..0053a54cff 100644 --- a/ext/domxml/php_domxml.h +++ b/ext/domxml/php_domxml.h @@ -53,7 +53,7 @@ therefore it's easier for the script-programmers to check, what's working how Can be checked with phpversion("domxml"); */ -#define DOMXML_API_VERSION "20020814" +#define DOMXML_API_VERSION "20030405" extern zend_module_entry domxml_module_entry; #define domxml_module_ptr &domxml_module_entry @@ -94,6 +94,7 @@ PHP_FUNCTION(domxml_doc_create_element_ns); PHP_FUNCTION(domxml_doc_create_text_node); PHP_FUNCTION(domxml_doc_create_comment); PHP_FUNCTION(domxml_doc_create_processing_instruction); +PHP_FUNCTION(domxml_doc_create_document_fragment); PHP_FUNCTION(domxml_doc_create_attribute); PHP_FUNCTION(domxml_doc_create_cdata_section); PHP_FUNCTION(domxml_doc_create_entity_reference); @@ -185,10 +186,13 @@ PHP_FUNCTION(domxml_entity_public_id); PHP_FUNCTION(domxml_entity_system_id); PHP_FUNCTION(domxml_entity_notation_name); -/* Class ProcessingInstructions */ +/* Class ProcessingInstructions methods*/ PHP_FUNCTION(domxml_pi_target); PHP_FUNCTION(domxml_pi_data); +/* Class DocumentFragment methods */ +PHP_FUNCTION(domxml_document_fragment_open_mem); + /* Class Parser methods */ PHP_FUNCTION(domxml_parser); PHP_FUNCTION(domxml_parser_add_chunk); |