I am going to show you how to json data in array. You can Use PHP default json_decode() funcation to objects are converted to standard objects. When use pass TRUE Parameters in json_decode(), returned objects will be converted into associative arrays. In below i gave you both example.
Example1
Standard Objects.
//output object(stdClass)#1 (5) { ["name"]=> string(4) "sonu" ["class"]=> string(4) "10th" ["rollnumber"]=> int(1113) ["address"]=> string(5) "delhi" ["subject"]=> string(5) "Hindi" }
Example2
Associative Arrays
//output array(5) { ["name"]=> string(4) "sonu" ["class"]=> string(4) "10th" ["rollnumber"]=> int(1113) ["address"]=> string(5) "delhi" ["subject"]=> string(5) "Hindi" }