My PHP knowledge is limited and I'm having a problem with a script I am running.
I am amalgamating quite a few xml feeds and writing the output to my own server in a custom xml file.
I am using XMLWriter to do this, but the problem I am having is knowing when the file has successful finished being written to?
I am loading the external feeds via SimpleXMLElement, and in total the script takes around 10 seconds to run, but when I do a print_r($xmlWriter) at the end of the script it is empty, so too is the xml file Im trying to write.
The xml file is successfully written, but in the content of php im not sure when and would like only to proceed to some other code once this is successful.
Any help appreciated
Thanks