I am trying to separate an array from a nested array.Any help would be appreciated.
Nested array:
array:1 [▼
"empid" => array:2 [▼
0 => "IDE023"
1 => "IDE025"
]
]
I want to split the below array from that
array:2 [▼
0 => "IDE023"
1 => "IDE025"
]
How can i do that using PHP ?