hi i have array like:-
Array
(
[0] => Array
(
[payment_id] => 3160
)
[1] => Array
(
[action] => update
)
[2] => Array
(
[date] => 2017-05-17 09:59:40
)
[3] => Array
(
[payment_date] => 23.05.2017
)
)
i want to remove the key 0,1, 2 i want my array to be like this
Array
(
[payment_id] => 3160
[action] => update
[date] => 2017-05-17 09:59:40
[payment_date] => 23.05.2017
)
how can i get this using php