I'm having a string like this..
food_item => 'Butter Croissant',food_id => '1',quantity => '1',price => '140'
I tried explode option
But I'm getting an array like this
Array
(
[0] => 'food_item' => 'Butter Croissant'
[1] => 'food_id' => '1'
[2] => 'quantity' => '1'
[3] => 'price' => '140'
)
But I should need to make it as an array like as follows,
Array
(
[food_item] => 'Butter Croissant'
[food_id] => '1'
[quantity] => '1'
[price] => '140'
)
how should I do this,Someone please help me..
Thank you in advance..
,?