<?php $json = '{ "values": [{ "nameValuePairs": { "address": "0111", "body": "Transaction cost, Ksh28.00.", "date": "1571473093291" } }, { "nameValuePairs": { "address": "0101", "body": "Transaction cost, Ksh0.00.", "date": "1498823347530" } } ] }'; $a = json_decode($json, true); foreach($a['values'] as $v){ echo $v['nameValuePairs']['address']."\n"; echo $v['nameValuePairs']['body']."\n"; echo $v['nameValuePairs']['date']."\n"; }
You have javascript disabled. You will not be able to edit any code.