I try to create a xml file with php.
As file is an extract of mySQL database, the recordset may contain around 90000 rows. So generate the xml file is slow, around 50s.
I don't want to make a dump, but only create a file to send to Flashbuilder to create a dataprovider.
I try to use several process:
DOMDocument
XmlWriter
SimpleXMLElement
But with those methods, time to create file is the same.
I made another test on server side, with this directive : ini_set('memory_limit','-1');
Do you know another approach, to write large xml file too speed.
Thanks for helping.