我正在尝试解析来自 wunderground JSON 的一些数据,而不使用 foreach 循环,仅在第一天。此 JSON 的示例:http: //api.wunderground.com/api/f429b85619ed45e8/geolookup/conditions/forecast/q/Australia/Sydney.json
我只想得到第一天:
$json_string = file_get_contents('http://api.wunderground.com/api/f429b85619ed45e8/geolookup/conditions/forecast/q/Australia/Sydney.json');
$parsed_json = json_decode($json_string);
$weekday = $parsed_json->{'forecast'}->{'simpleforecast'}->{'forecastday[0]'}->{'date'}->weekday;
我搜索了很多并尝试了很多示例,但通常我得到错误或什么都没有。帮助?