I got the following array
array(3) {
[0] =>
array(1) {
'Investment' =>
array(15) {
'id' =>
string(36) "53d64bec-031c-4732-b2e0-755799154b1b" ...
I would like to remove the Investment key and do the new array should be
array(3) {
[0] =>
array(15) {
'id' =>
string(36) "53d64bec-031c-4732-b2e0-755799154b1b" ...
how do I do it?
$array[0]=$array[0]['Investment'];