Convert large XML file to CSV in PHP -
I have a 50MB XML file. I want to convert it to a CSV file, but in most ways I have removed the server memory Is there a good way to do this, such as the XMLreader
You want to use to parse XML, because it is an event based parser Works - The example does not load everything in memory, but rather reads it because it is advance through the input file.
Comments
Post a Comment