I have array like below.I want to convert this array but I want to use array function.is there any array function to convert below array
[name] => Array
(
[0] => Cash Crops
[7] => Cereal Crops
[12] => Vegetables
[25] => Leafy Vegetables
[28] => Vine Vegetables
)
into this array
[0] => Array
(
[name] => Cash crops
)
[1] => Array
(
[name] => Pulse crops
)
[2] => Array
(
[name] => Oil seed crops
)
[3] => Array
(
[name] => Cereal Crops
)