我正在使用OpenWeather API。我將它保存在$jsonobj
,但不知道如何訪問天氣細節。我不知道[]
和{}
如何不同以及它們實際上的含義。來自URL的PHP JSON值
我的代碼是在這裏:
<?php
$name_of_city = "mathura";
$request = 'http://api.openweathermap.org/data/2.5/weather?APPID=my_key&q='.$name_of_city;
$response = file_get_contents($request);
$jsonobj = json_decode($response,true);
print_r($jsonobj);
?>
[用PHP解析JSON文件(可能的重複http://stackoverflow.com/questions/ 4343596 /解析-json-file-with-php) –
請不要吝惜,請避免將文本信息作爲圖像發佈。圖片無法搜索,無法複製和粘貼,並且可訪問性差。並且請** _從不___以JPEG形式發佈文本圖像。這是一個可怕的文字格式。如果您絕對必須發佈文字圖片,請使用PNG。 – Chris