Which is more efficient, (in CPU usage)?
for($i=0;$i<100000;$i++) {
echo $i , '<BR>';
}
OR
for($i=0;$i<100000;$i++) {
$s .= $i , '<BR>';
}
echo $s
| show 1 more comment |
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
If the limit is 100 like in your example code, it does not matter. If it is several million, echoing the character straight away instead of storing it in a variable first will make sure your script doesn't hit the memory limit. |
|||||||||||||||
|
|
I think it really does not matter in such a small loop I'd use second, because echo is called less times, but there is a risk of hitting memory limit. |
|||
|
|
|
the loop is so so tiny that there is not really big difference. However i guess thta the first one should be slower since is calling the echo function for each iteration. |
|||
|
|
echocalls. – N.B. Sep 19 '11 at 14:57echo(but not for the variable assignment) – Pekka 웃 Sep 19 '11 at 15:08