diff options
author | Rob Richards <rrichards@php.net> | 2003-07-10 11:17:25 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2003-07-10 11:17:25 +0000 |
commit | 16fb3e91c02f3e8589cdff20b24a84299865c821 (patch) | |
tree | 989d507ae725ee56b26172424f5d8de41ce1d67a /ext/dom/php_dom.h | |
parent | 98b74781a5cbf2bec8410880867a609c4e8be407 (diff) | |
download | php-git-16fb3e91c02f3e8589cdff20b24a84299865c821.tar.gz |
remove global error handling - use of libxml globals is a bad thing
add domDocument properties for parsing options:
validateOnParse, resolveExternals, preserveWhiteSpace, substituteEntities
implement custom parsing to avoid use of globals
implement local errors while parsing
errors displayed until error objects implemented
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 9160d10958..a1f5f69f93 100644 --- a/ext/dom/php_dom.h +++ b/ext/dom/php_dom.h @@ -82,6 +82,7 @@ void dom_get_elements_by_tag_name_ns_raw(xmlNodePtr nodep, char *ns, char *local void php_dom_create_implementation(zval **retval TSRMLS_DC); int dom_hierarchy(xmlNodePtr parent, xmlNodePtr child); int dom_has_feature(char *feature, char *version); +void add_domdocument_properties(zval *id TSRMLS_DC); #define REGISTER_DOM_CLASS(ce, name, parent_ce, funcs, entry) \ INIT_CLASS_ENTRY(ce, name, funcs); \ |