Re: incrementing in a for loop

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Peppy wrote:
I've searched online and am unable to find how to increment by more than one in a for loop.

for ($i = 1; $i <= 6; $i++) {

Is it possible to increment $i by 5?

Everyone has responded with the correct answer, but you do realize that this loop will only run twice? It will print 1, then 6.

If you change it to $i < 6, then it will print 1.

And just because its Tuesday, and if you happen to be using PHP 5.0.0+:

$numbers = range(1,100,5);
foreach($numbers as $number)
{
   echo $number."\n";
}

And now, back to your regularly scheduled programming....

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux