この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] => )
座標を取得する方法はありますか?