NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
```php /** * 获取城市天气预报 * @return bool|string */ public function get_weather() { $city=$_GET['city']; if(empty($city)){ $city= $this->get_city(); } $res = file_get_contents("http://api.map.baidu.com/telematics/v3/weather?location={$city}&output=json&ak=32da004455c52b48d84a3a484c0dbc99"); return json([ 'msg' => 'success', 'code' => 1, 'data' => json_decode($res, true) ]); } protected function get_city(){ $getIp = getRemoteIPAddress(); $content = file_get_contents("http://api.map.baidu.com/location/ip?ak=enYCQ2yaIIjL8IZfYdA1gi6hK2eqqI2T&ip=120.237.113.106&coor=bd09ll"); $json = json_decode($content, true); $place =urlencode($json['content']['address_detail']['city']); return $place; } ```