Re: Skip first 4 array values

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

 



On 6/9/06, Brad Bonkoski <bbonkoski@xxxxxxxxxxxxxx> wrote:
if numerically indexed:
$max = count($array);
for($i=0; $i<$max;$i++) {
    if( $i <= 3 )
       continue;
    else {
       //do what you will
    }
}

Why not start $i at 3 and skip the if else?

--
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