diff options
| author | Rob Richards <rrichards@php.net> | 2003-06-12 20:02:05 +0000 |
|---|---|---|
| committer | Rob Richards <rrichards@php.net> | 2003-06-12 20:02:05 +0000 |
| commit | 5b19e1ec92cc49031c069fcebdc570b5fa7a325b (patch) | |
| tree | aa34c7630feb6e43ff83003af1108c8e01a2e00c /ext/dom/php_dom.h | |
| parent | 48cc4a7be62173ae982e68349242966bb92a0544 (diff) | |
| download | php-git-5b19e1ec92cc49031c069fcebdc570b5fa7a325b.tar.gz | |
add node->isSupported()
add domimplementation->hasFeature()
add formatOutput property (extends DOM)
call xmlFreeDoc when doc is no longer referenced rather than custom code
save and savexml now format based on formatOutput property
Diffstat (limited to 'ext/dom/php_dom.h')
| -rw-r--r-- | ext/dom/php_dom.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/dom/php_dom.h b/ext/dom/php_dom.h index 8c31288714..e1e942be3a 100644 --- a/ext/dom/php_dom.h +++ b/ext/dom/php_dom.h @@ -73,6 +73,7 @@ void dom_normalize (xmlNodePtr nodep TSRMLS_DC); void dom_get_elements_by_tag_name_ns_raw(xmlNodePtr nodep, char *ns, char *local, zval **retval, dom_object *intern TSRMLS_DC); void php_dom_create_implementation(zval **retval TSRMLS_DC); int dom_hierarchy(xmlNodePtr parent, xmlNodePtr child); +int dom_has_feature(char *feature, char *version); #define DOM_NO_ARGS() \ if (ZEND_NUM_ARGS() != 0) { \ |
