On Fri, 2006-06-09 at 10:28, Brad Bonkoski wrote: > Eric Butera wrote: > > > 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? > > > > > you could, just a simple example out of probably hundreds of ways to do > it... > of course this uses the same *logic* for both indexed and associative > arrays, so I thought it would be more readable for the user. Except your foreach version is buggy since $i never get incremented :B Cheers, Rob. -- .------------------------------------------------------------. | InterJinn Application Framework - http://www.interjinn.com | :------------------------------------------------------------: | An application and templating framework for PHP. Boasting | | a powerful, scalable system for accessing system services | | such as forms, properties, sessions, and caches. InterJinn | | also provides an extremely flexible architecture for | | creating re-usable components quickly and easily. | `------------------------------------------------------------' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php