diff --git a/reference/domxml/functions/domxml-open-file.xml b/reference/domxml/functions/domxml-open-file.xml index 681130c7a3..c7cc6e8902 100644 --- a/reference/domxml/functions/domxml-open-file.xml +++ b/reference/domxml/functions/domxml-open-file.xml @@ -1,5 +1,5 @@ - + @@ -11,6 +11,8 @@ objectdomxml_open_file stringfilename + intmode + array&error The function parses the XML document in the file named @@ -18,6 +20,23 @@ "Dom document", having the properties as listed above. The file is accessed read-only. + + Optional parameter mode can be used to change the + behavior of this function. It was added in PHP 4.3.0. You can use one of + DOMXML_LOAD_PARSING (default), + DOMXML_LOAD_VALIDATING or + DOMXML_LOAD_RECOVERING for it. + You can add to it also DOMXML_LOAD_DONT_KEEP_BLANKS, + DOMXML_LOAD_SUBSTITUTE_ENTITIES and + DOMXML_LOAD_COMPLETE_ATTRS by + bitwise or. + + + If the error parameter is used, it will contain the + error messages. error must be passed in by + reference. The parameter was + added in PHP 4.3.0. + Opening an XML document from a file diff --git a/reference/domxml/functions/domxml-open-mem.xml b/reference/domxml/functions/domxml-open-mem.xml index 00c601dce5..7830f0a56c 100644 --- a/reference/domxml/functions/domxml-open-mem.xml +++ b/reference/domxml/functions/domxml-open-mem.xml @@ -1,5 +1,5 @@ - + @@ -11,6 +11,8 @@ objectdomxml_open_mem stringstr + intmode + array&error The function parses the XML document in @@ -19,6 +21,17 @@ domxml_open_file or domxml_new_doc must be called before any other function calls. + + Optional parameter mode can be used to change the + behavior of this function. It was added in PHP 4.3.0. See + domxml_open_file for possible values. + + + If the error parameter is used, it will contain the + error messages. error must be passed in by + reference. The parameter was + added in PHP 4.3.0. + Opening an XML document in a string