I am stuck somewhere in arrays. I am getting an array like:
Array
(
[0] => name
[1] => description
)
And I want to convert that into :
Array
(
"0" => name
"1" => description
)
I have found on google enough for this but did not found any solution, and don't think it is object array.
Can someone please help me out in this.
Thanks