View Single Post
06-20-2008, 08:50 PM
#4
justin00 is offline justin00
Status: I'm new around here
Join date: Jun 2008
Location: localhost
Expertise:
Software:
 
Posts: 5
iTrader: 0 / 0%
 

justin00 is on a distinguished road

Send a message via MSN to justin00

  Old

Another simple demo, this loop will run 10 times

$i = 0;
while($i < 10){
echo($i);
++$i;
}

You may notice I used ++$i, instead of $i++

Based on benchmarks ++$i is slightly faster