Php 使用谷歌地理编码API从地址获取纬度和经度错误消息:“;您已超过此api的每日请求配额。”;

Php 使用谷歌地理编码API从地址获取纬度和经度错误消息:“;您已超过此api的每日请求配额。”;,php,json,google-maps,google-maps-api-3,Php,Json,Google Maps,Google Maps Api 3,这是我的代码 $url = "https://maps.google.com/maps/api/geocode/json?address=$address&sensor=false"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_PROXYPORT, 3128); curl_seto

这是我的代码

$url = "https://maps.google.com/maps/api/geocode/json?address=$address&sensor=false";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($ch);
curl_close($ch);
$response_a = json_decode($response);
我怎样才能增加配额。我有将近30k+的数据

你必须为一个