[question] Is there any way to get rid of the <?xml version="1.0" encoding="UTF-8"?> string from the XML file? #33
Unanswered
wujekbogdan
asked this question in
Questions
Replies: 2 comments
-
|
Hi dear. https://github.com/servo-php/fluidxml/wiki/Getting-Started:-10.-Exporting
|
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Ups... Thank you :). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have to generate a very big XML file. The file is generated incrementally - node by node, then these nodes are concatenated into a final XML file (partials are saved on a disc and then merged when all partials are ready).
I don't want each node to contains the
<?xml version="1.0" encoding="UTF-8"?>so I have to usestr_replace()in order to get rid of this tag from each node. Is there a better, more elegant way?Beta Was this translation helpful? Give feedback.
All reactions