gpt4 book ai didi

php - SQL搜索 "near"经纬度

转载 作者:行者123 更新时间:2023-11-30 22:07:46 27 4
gpt4 key购买 nike

<分区>

我正在尝试编写一个在某个位置附近进行搜索的搜索栏。现在它是硬编码的。在我为经度和纬度添加 like 语句之前,该语句一直有效。有更好的方法吗?

$searchString = explode(' ', $_GET["searchString"]);
$useLocation = $_GET["useCurrentLocation"];
if($useLocation == 1){
foreach($searchString AS $key){
$stmt = $db->prepare("SELECT * FROM locations WHERE Name LIKE '%{$key}%' AND Longitude Like '-79.8579' And Latitude Like '43.5237'");
$stmt->execute();
$result = $stmt->get_result();
while($row = $result->fetch_assoc()){
echo $row['Name'];
}

}
}

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com