PHP Increasing write to page speed.
Posted
by Frederico
on Stack Overflow
See other posts from Stack Overflow
or by Frederico
Published on 2010-04-15T22:10:28Z
Indexed on
2010/04/15
22:23 UTC
Read the original article
Hit count: 310
I'm currently writing out xml and have done the following:
header ("content-type: text/xml");
header ("content-length: ".strlen($xml));
$xml being the xml to be written out. I'm near about 1.8 megs of text (which I found via firebug), it seems as the writing is taking more time than the script to run.. is there a way to increase this write speed?
Thank you in advance.
© Stack Overflow or respective owner