I have the following PHP array
Array (
[subjecttable] => Array (
[0] => Array (
[subject] => maths
[svalue] => 1
)
[1] => Array (
[subject] => english
[svalue] => 2
)
[2] => Array (
[subject] => physics
[svalue] => 3
)
)
[Monthtable] => Array (
[0] => Array (
[month] => Jan
[mvalue] => 1
)
[1] => Array (
[month] => Feb
[mvalue] => 2
)
[2] => Array (
[month] => Mar
[mvalue] => 3
)
)
)
I converted this from the json string given below
{"subjecttable": [ {"subject":"maths","svalue":"1"}, {"subject":"english","svalue":"2"}, {"subject":"physics","svalue":"3"} ], "Monthtable": [ {"month":"Jan","mvalue":"1"}, {"month":"Feb","mvalue":"2"}, {"month":"Mar","mvalue":"3"} ] }
I want to convert the above php array to
Array (
[0] => Array (
[subjecttable] => subject
[monthtable] => month
[month] => jan
[subject] => maths
[svalue] => 1
[mvalue] => 1
)
[1] => Array (
[subjecttable] => svalue
[monthtable] => mvalue
[month] => feb
[subject] => english
[svalue] => 2 [mvalue] => 2
)
[2] => Array (
[month] => mar
[subject] => physics
[svalue] => 3
[mvalue] => 3
)
)
so that my json string looks like
[ {"subjecttable":"subject","monthtable":"month","month":"jan","subject":"maths","svalue":"1","mvalue":"1"}, {"subjecttable":"svalue","monthtable":"mvalue","month":"feb","subject":"english","svalue":"2","mvalue":"2"}, {"month":"mar","subject":"physics","svalue":"3","mvalue":"3"} ]
How can I do this?
