Maison  >  Article  >  développement back-end  >  PHP appelle l'API de l'interface météo Baidu pour interroger la météo en temps réel

PHP appelle l'API de l'interface météo Baidu pour interroger la météo en temps réel

little bottle
little bottleavant
2019-04-22 17:26:104645parcourir

Désormais, vous n'avez plus besoin d'attendre à 19h30 pour consulter les prévisions météo du lendemain. Tant que vous disposez d'un téléphone portable et d'une connexion Internet, vous pouvez facilement consulter la météo en temps réel. Mais savez-vous utiliser PHP ? Cet article vous apprendra comment appeler l'interface météo de Baidu pour afficher la météo en temps réel directement sur PHP. Sans plus tarder, apprenons ensemble

Le code est le suivant :

//百度天气接口API
$location = "北京";  //地区
$ak = "5slgyqGDENN7Sy7pw29IUvrZ"; //秘钥,需要申请,百度为了防止频繁请求
$weatherURL = "http://api.map.baidu.com/telematics/v3/weather?location=$location&output=json&ak=$ak";   
$ch = curl_init($weatherURL) ;
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // 获取数据返回
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); // 在启用 CURLOPT_RETURNTRANSFER 时候将获取数据返回
$result = curl_exec($ch);
echo $result;
Tutoriels associés :

Tutoriel vidéo PHP

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer