From 51c248a7d2c17c6b009183dc1a283ce0fa83a23a Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sat, 7 Aug 2004 16:18:12 +0000 Subject: [PATCH] Mode parameter (bug #24722) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@165650 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../domxml/functions/domxml-open-file.xml | 21 ++++++++++++++++++- .../domxml/functions/domxml-open-mem.xml | 15 ++++++++++++- 2 files changed, 34 insertions(+), 2 deletions(-) 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