1

我的 PHP 文件中有以下 mysql 查询:

$shopID   = mysql_real_escape_string($_GET['shop_id']);
$latitudeCenter = mysql_real_escape_string($_GET['lat_center']);
$longtitudeCenter = mysql_real_escape_string($_GET['lng_center']);

$lat_min = $latitudeCenter - 0.045;
$lat_max = $latitudeCenter + 0.045;
$long_min = $longtitudeCenter - (0.045 / cos($latitudeCenter*M_PI/180);
$long_max = $longtitudeCenter + (0.045 / cos($latitudeCenter*M_PI/180);

$sql = "SELECT * FROM shops WHERE shop_id = '$shopID' AND lat >= '$lat_min' AND lat <= '$lat_max' AND lng >= '$long_min' AND lng <= '$long_max'";

由于某种原因,查询未成功运行。上述查询有效吗?谢谢

编辑:

$long_min 和 $long_max 计算有问题,因为当它们被注释掉时,它工作正常。

这是我试图转换为 PHP 的代码:

lat_min = lat_center - 0.045;
lat_max = lat_center + 0.045;
long_min = long_center - (0.045 / Math.cos(lat_center*Math.PI/180);
long_max = long_center + (0.045 / Math.cos(lat_center*Math.PI/180);

我的 PHP 有什么问题?

4

1 回答 1

2

使用 MySQl'sBETWEEN并且永远不要使用引号来比较数字。所以查询变为:

$sql = "SELECT *
  FROM shops
  WHERE shop_id = $shopID
    AND lat BETWEEN $lat_min AND $lat_max
    AND lng BETWEEN $long_min AND $long_max";

在哪里,我认为该shop_id列是自动递增的数字。

于 2012-07-20T13:51:20.823 回答