Posted by jodleren on 03/30/07 15:19
On Mar 27, 1:45 am, mgc...@gmail.com wrote:
> For loop and while loop. which one is faster?
> I see many articles fighting over it and different people come up with
> different results.
a bit late, but...
AFAIK it is faster to count down than up. Dont know about while or
for, but they are pretty much the same.
Personally I use:
$i=88883467568457642645;
while(0<$i--)
blabla;
[Back to original message]
|