我正在尝试使用正则表达式从这个 html 中提取经度和纬度坐标。这只是来自http://www.bricodepot.fr/troyes/store/storeDetails.jsp?storeId=1753的完整 html 的片段,所以我需要能够搜索整个目标页面 html 并匹配经度和此块的纬度:
<div class="coordinates">
<i></i>
<strong>Latitude :</strong> 46.369384765625<strong>Longitude :</strong> 2.56929779052734</div>
</div>
这大约是我目前所能得到的:
preg_match("/<strong>Latitude :<\/strong> (.*?)/", $input_line, $output_array);
这使:
数组([0] =>纬度: [1] =>)
知道如何获得坐标吗?