| Country Rank: | 2 |
|---|---|
| World Rank: | 69 |
| Profile Viewed: | 493 |
| Points: | 4593 |
|
03 Mar
2010
|
Another way to loop array's
By: Emad Al-Shihabi
|
Another array walk, I'd like to profile it to check if it is faster then the "foreach" function :)
$count = count($array) - 1; $card = ''; for(reset($array); key($array) != $count; next($array)){ $card.= current($array); } reset($array);