<?php $json = '{ "status": "400", "msg": "List Of Lotteries", "lotteryRes": { "result": { "Disawar": [ "Disawar" ], "DL Bazzar": [ "DL Bazzar" ], "Faridabad": [ "Faridabad" ], "Gaziyabad": [ "Gaziyabad" ], "X90": [ "X90" ], "Gali": [ "Gali" ], "RAJASTHAN ROYAL": [ "RAJASTHAN ROYAL" ], "Rajasthan Bazaar": [ "Rajasthan Bazaar" ] }, "lottery_date": [ "2018-03-25 05:30:00", "2018-03-31 15:20:00", "2018-03-30 18:15:00", "2018-03-31 20:20:00", "2018-04-04 23:00:00", "2018-04-02 23:25:00", "2018-04-14 16:00:00", "2018-04-13 14:00:00" ] } }'; // $json = file_get_contents('url'); $array = json_decode($json, true); foreach (array_values($array['lotteryRes']['result']) as $key => $result) { echo array_values($result)[0].' '.$array['lotteryRes']['lottery_date'][$key].PHP_EOL; }
You have javascript disabled. You will not be able to edit any code.