Below is my php array,
Array
(
[0] => Array
(
[requests] => 22
)
[1] => Array
(
[requests] => 44
)
[overview_chart_data] => Array
(
[response] => ok
)
)
below is php json encoded result of above array ,
{"0":{"requests":22},"1":{"requests":44},"overview_chart_data":{"response":"ok"}},
for some reason I need to get the result like below,
{{"requests":22},{"requests":44},"overview_chart_data":{"response":"ok"}}
Is it possible to get by expected result..! Anyhelp Appreciated...