这里的mapview在我的变量中始终返回“ false”

时间:2019-02-27 17:22:47

标签: php android-mapview

嗨,我尝试使用带有curl的PHP在服务器端检索地图,但是当我使用CURL时,该URL总是返回False。

另一个网站,例如www.google.com返回值,复制到我的浏览器中的$ url显示地图。

$url = 'https://image.maps.api.here.com/mia/1.6/mapview?app_id......."
$curl = curl_init($url); 

curl_setopt($curl, CURLOPT_FAILONERROR, true); 
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); 
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); 
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); 
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);   
$image = curl_exec($curl); 

您有个好的方法来工作吗,我的目标是将图像的内容复制到变量中以在视图中显示(在laravel中)。

0 个答案:

没有答案