Posted by Berimor on 05/30/06 10:42
Hi guys,
just wondering - which method of output is more fast and use less system
resources. The page being build with outup from multiple functions. So, is
it better to output each function result directly with "echo" construction:
echo "string1";
echo "string2";
................
echo "stringN";
or maybe better to collect all outputs in a variable first:
$out.= "string1";
$out.= "string2";
................
$out.= "stringN";
echo $out;
Maybe someone made a kind of research in this field :)
--
Web Design Essex | Multimedia | Printing http://nextwave.co.uk
Navigation:
[Reply to this message]
|