<?php $json = '{ "client_id": 1234, "rawdata": [{ "task_id1": { "apikey1": "1234", "flow": "ssp", "total_chocolate_request": 43235, "start_time": "2017 - 05 - 09 12: 29: 00 UTC", "end_time": "2017 - 05 - 09 12: 29: 00 UTC" }, "task_id2": { "apikey2": "1235", "flow": "mobileweb", "total_chocolate_request": 43235, "start_time": "2017 - 05 - 09 12: 29: 00 UTC", "end_time": "2017 - 05 - 09 12: 29: 00 UTC" } }] }'; $array = json_decode($json, true); $rawDatas = $array['rawdata'][0]; foreach($rawDatas as $key =>$data) { echo $key."\n......\n"; var_dump($data); echo "............\n"; }
You have javascript disabled. You will not be able to edit any code.