geoadd(self::SHOP_LOCATION_KEY, '113.67462248', '34.72577707', $shop_id); // return $redis->geoadd(self::SHOP_LOCATION_KEY, number_format($lng, 8), number_format($lat, 8), $shop_id); } /** * 删除站点定位 * @return mixed * Author: Mead */ public static function delShopsLocation($id = 0) { /** @var $redis \Predis\Client */ $redis = Redis::connection(); if ($id) { return $redis->zrank(self::SHOP_LOCATION_KEY, $id); } return $redis->del(self::SHOP_LOCATION_KEY); } }