我Google Places Photo API
在我的 Laravel PHP 应用程序中这样调用:
public static function getpic ($photoreference){
$app_id = 'XXXYYYZZZ';
$URLToCall = "https://maps.googleapis.com/maps/api/place/photo?maxwidth=225&photoreference=$photoreference&sensor=false&key=$app_id";
$result = file_get_contents($URLToCall);
return $result;
}
当我print_r $result
,我得到:
string(12902) "ÿØÿàJFIFÿá`ExifII*1&i‡.Picasa0220 á –ÿÛ„
我不知道如何使用返回的内容。我试图将字符串传递给视图,但失败了。
有什么建议吗?