所以LRD(例如:xx88f50e9776ef46b5:0xf65caab6fccd3bdf)是指向谷歌评论窗口的指针。有没有办法使用Google Place API提取代码?
答案 0 :(得分:1)
我找到了一种从商家的Google地图页面中提取LRD代码的方法。请参阅下面的PHP代码。 您可以使用Google Place API轻松检索商家的地点ID。
<?
$contents = file_get_contents("https://maps.google.com/?cid=".$_POST['place_id']);
preg_match("/(0x[a-z0-9]{4,}:0x[a-z0-9]{4,})/",$contents,$matches);
echo $matches[0]; //LRD code
?>