Heim > Artikel > Backend-Entwicklung > So verwenden Sie die API in PHP
1. Verwenden Sie die Funktion 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. Verwenden Sie PHP Curl, um
$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);
Empfohlenes Tutorial: PHP-Video-Tutorial
Das obige ist der detaillierte Inhalt vonSo verwenden Sie die API in PHP. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!