I have an array like following.
array(1) {
["foo"]=>
array(2) {
[1]=>
string(5) "abcde"
[2]=>
string(4) "pqrs"
}
}
now I want to convert it into following
array(2) {
[1]=>
string(5) "abcde"
[2]=>
string(4) "pqrs"
}
How can I achieve that?