0

我有一大串类似于以下的坐标数据:

-83.6530304633209,34.8237504877659,-83.65536046332301,34.8248804877671等......

我正在尝试将其拆分为一个数组,以便可以在这样的循环中回显它:

new google.maps.LatLng(-83.6530304633209,34.8237504877659)
new google.maps.LatLng(-83.65536046332301,34.8248804877671)
// etc....

任何人都知道我怎么能在 PHP 中做到这一点?

谢谢

4

1 回答 1

6
$numbers=explode(",",$string);
for ($i=0;$i<=count($numbers)/2;$i+=2)
  echo "new google.maps.LatLng(".$numbers[$i].",".$numbers[$i+1].")";

给你!

于 2012-06-11T19:26:03.987 回答