I have this array:
$array = array(a, b, c, d, e, f, g);
I want to split it in two arrays depending if the index is even or odd, like this:
$odd = array(a, c, e, g);
$even = array(b, d, f);
Thanks in advance!
|
One solution, using anonymous functions and
This separates the items in just one pass over the array, but it's a bit on the "cleverish" side. It's not really any better than the classic, more verbose
|
||||
|
|
|
I am not sure if this is the most elegant way, but it should work a charm:
|
|||
|
|
|
Use
|
|||||
|
|
Just loop though them and check if the key is even or odd:
|
||||
|
|
|
One
Two
|
|||||
|
|
b,dandfare1,3and5... are you sure they shouldn't be$odd? – Krycke Sep 13 '12 at 12:04