| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace Heanup\Library\WeatherAdapt;
- class WeatherStruct
- {
- public $returnBody = [
- 'Weather' => [
- [
- 'basic' => [
- 'location' => '',
- 'update' => '',
- ],
- 'status' => 'ok',
- 'air_now_city' => '',
- 'alarm' => '',
- 'now' => '',
- 'daily_forecast' => [
- [
- "cond_txt_d" => "晴",
- "cond_txt_n" => "多云",
- "date" => "2019-06-11",
- "tmp_max" => "32",
- "tmp_min" => "20",
- "wind_dir" => "南风",
- "wind_sc" => "3-4"
- ]],
- 'hourly' => [
- [
- "cond_txt" => "晴",
- "time" => "2019-06-11 16:00",
- "tmp" => "30"
- ]
- ],
- 'lifestyle' => [
- [
- "type" => "comf",
- "brf" => "较不舒适",
- "txt" => "白天天气晴好,明媚的阳光在给您带来好心情的同时,也会使您感到有些热,不很舒适。"
- ]
- ],
- ]
- ]
- ];
- }
|