我想要的是从字符串中获取坐标(从 Google Maps img 的 src 中获取)。下面是我的一个失败的正则表达式尝试。
那么,最好的方法是什么?用正则表达式?那么应该如何组成呢?
$string = "//maps.google.com/maps/api/staticmap?sensor=false&center=56.393906,16.066206&zoom=12&size=344x170&language=sv&markers=56.393906,16.066206&maptype=roadmap&scale=1";
$matches = array();
preg_match('/center=(.*?)\zoom/s', $string, $matches);
... ?
想要的最终结果:
$coordiates = (
[0] = '56.393906',
[1] = '16.066206'
);