From 1d1a72aab7e355e02bec8b7bf60c299d709ff03d Mon Sep 17 00:00:00 2001 From: Alberto Peripolli Date: Tue, 13 Feb 2024 17:54:56 +0100 Subject: [PATCH 1/2] Update README.md Fix `convert` params specific --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 954bc25..9dcbc03 100755 --- a/README.md +++ b/README.md @@ -164,7 +164,8 @@ If your input contains something that cannot be parsed a `DOMException` will be You could specify specific values in for: - encoding as the fourth argument (string) - version as the fifth argument (string) - - standalone as sixth argument (boolean) + - DOM properties as the sixth argument (array) + - standalone as sevnth argument (boolean) ```php $result = ArrayToXml::convert($array, [], true, 'UTF-8', '1.1', [], true); From 474fb3f9cfa0acb6902a5bd9764e9a75aedd094e Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Tue, 13 Feb 2024 17:57:17 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9dcbc03..7f564c7 100755 --- a/README.md +++ b/README.md @@ -165,7 +165,7 @@ You could specify specific values in for: - encoding as the fourth argument (string) - version as the fifth argument (string) - DOM properties as the sixth argument (array) - - standalone as sevnth argument (boolean) + - standalone as seventh argument (boolean) ```php $result = ArrayToXml::convert($array, [], true, 'UTF-8', '1.1', [], true);