
1、用file_get_contents()函数
$params = array('key' => '8d284859d04cfeeea6b0771f754adb49',
'location' => $_COOKIE["lng"].",".$_COOKIE["lat"]);
$url3 = "http://restapi.amap.com/v3/geocode/regeo";
if (strripos('?', $url3)) {
$url4 = $url3 . http_build_query($params);
} else {
$url4 = $url3 . '?' . http_build_query($params);
}
$ret2 = json_decode(file_get_contents($url4));
var_dump($ret);2、用php的curl拓展
$url2 = 'http://www.sojson.com/open/api/weather/json.shtml';
$params = array('city' => '长沙');
if (strripos('?', $url2)) {
$url = $url2 . http_build_query($params);
}
else {
$url = $url2 . '?' . http_build_query($params);
}
$data = 'city=长沙';
$curlobj = curl_init();
curl_setopt($curlobj, CURLOPT_URL, $url);
curl_setopt($curlobj, CURLOPT_HEADER, 0);
curl_exec($curlobj);推荐教程:PHP视频教程
以上就是api怎么在php中使用的详细内容,更多请关注php中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号