我正在使用谷歌距离矩阵api来获得两者之间的距离 点,但我的卷曲似乎没有用,我正在使用linux共享 在其中启用curl托管,托管在那里的所有其他网站都没有 有关此问题,但这个特定的页面要么没有加载 或者如果负载,则显示计算的距离。我尝试删除 这个特殊的代码和页面在jiffy中打开!!知道为什么吗?
<?php
$origin = urlencode($_SESSION['source']);
$destination = urlencode($_SESSION['destination']);
$url = "https://maps.googleapis.com/maps/api/distancematrix/json?origins=$origin&destinations=$destination&key=Apikey";
$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, true);
$distance=$response_a['rows'][0]['elements'][0]['distance']['text'];
?>