I wish to know an simple way to access the value inside following JSON, which owns an Array. I am codeing in PHP:
<?php
$json = '{"flight": "7800", "city": "New York", "time":[{"Houston":"17:34","Los Angles":"21:23"}]}';
$str = json_decode($json);
echo $str->city; // New York
//echo $str->time->Houston; // How can I access the valus of Houston: 17:34
?>
Decode the Json-String as assoc array: