时间:2021-07-01 10:21:17 帮助过:2人阅读
$sql=' SELECT userid FROM tbl_myr_refresh
WHERE geohash
IN (:geohash1, :geohash2, :geohash3, geohash4, geohash5, geohash6, geohash7, geohash8, geohash9)';
$geohashCode=Yii::app()->session['geohash'];
$geohash=new MGeohash();
$neighbors = $geohash->neighbors($geohashCode);
array_push($neighbors, $geohashCode);
$connection= Yii::app()->db->connection;
$command=$connection->createCommand($sql);
$command->bindParam(":geohash1",$neighbors[0],PDO::PARAM_STR);
$command->bindParam(":geohash2",$neighbors['top'],PDO::PARAM_STR);
$command->bindParam(":geohash3",$neighbors['bottom'],PDO::PARAM_STR);
$command->bindParam(":geohash4",$$neighbors['right'],PDO::PARAM_STR);
$command->bindParam(":geohash5",$neighbors['left'],PDO::PARAM_STR);
$command->bindParam(":geohash6",$neighbors['topleft'],PDO::PARAM_STR);
$command->bindParam(":geohash7",$neighbors['topright'],PDO::PARAM_STR);
$command->bindParam(":geohash8",$neighbors['bottomright'],PDO::PARAM_STR);
$command->bindParam(":geohash9",$neighbors['bottomleft'],PDO::PARAM_STR);
$result=$command->queryAll();
return $result;
这几行代码是用来查询附近的人的,采用的是GEOHASH。具体的业务就不说了,主要是这段代码怎么才能变得更好看呢?
我觉得太丑了。好像YII CDbCriteria可以优化一些,但不知道咋做!求大神优化代码
$sql=' SELECT userid FROM tbl_myr_refresh
WHERE geohash
IN (:geohash1, :geohash2, :geohash3, geohash4, geohash5, geohash6, geohash7, geohash8, geohash9)';
$geohashCode=Yii::app()->session['geohash'];
$geohash=new MGeohash();
$neighbors = $geohash->neighbors($geohashCode);
array_push($neighbors, $geohashCode);
$connection= Yii::app()->db->connection;
$command=$connection->createCommand($sql);
$command->bindParam(":geohash1",$neighbors[0],PDO::PARAM_STR);
$command->bindParam(":geohash2",$neighbors['top'],PDO::PARAM_STR);
$command->bindParam(":geohash3",$neighbors['bottom'],PDO::PARAM_STR);
$command->bindParam(":geohash4",$$neighbors['right'],PDO::PARAM_STR);
$command->bindParam(":geohash5",$neighbors['left'],PDO::PARAM_STR);
$command->bindParam(":geohash6",$neighbors['topleft'],PDO::PARAM_STR);
$command->bindParam(":geohash7",$neighbors['topright'],PDO::PARAM_STR);
$command->bindParam(":geohash8",$neighbors['bottomright'],PDO::PARAM_STR);
$command->bindParam(":geohash9",$neighbors['bottomleft'],PDO::PARAM_STR);
$result=$command->queryAll();
return $result;
这几行代码是用来查询附近的人的,采用的是GEOHASH。具体的业务就不说了,主要是这段代码怎么才能变得更好看呢?
我觉得太丑了。好像YII CDbCriteria可以优化一些,但不知道咋做!求大神优化代码
$geohash = new MGeohash();
$geohashes['center'] = Yii::app()->session['geohash'];
$geohashes = array_merge($geohashes, $geohash->neighbors($geohashes['center']));
$sql = "SELECT `userid` FROM `tbl_myr_refresh` WHERE `geohash` IN (%s)";
$sql = sprintf($sql, implode(",", $geohashes));
$db = Yii::app()->db->connection;
$result = $db->createCommand($sql)->queryAll();
只是要从neighbors
里面找到对应的点,没必要一个一个按顺序来吧?