🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 获取用户当前的操作门店ID **位置:** Wpos\Controller\IndexController.class.php **参数:** * 获取用户当前的操作门店ID * @return $max_shop_id int 门店ID **调用:** * $result = $this->get_shops_id(); **完整代码:** ~~~ /** * 获取用户当前的操作门店ID * Lanson 2017-09-06 * @return $max_shop_id int 门店ID */ public function get_shops_id() { // 判断用户当前的门店ID是否存在 $res = $this->exist_shop_id(); if (!empty($res)) { $max_shop_id = $res; } elseif (!empty($_SESSION['userInfo']['the_shop_id'])) { $max_shop_id = $_SESSION['userInfo']['the_shop_id']; } else { $max_shop_id = 5; } return $max_shop_id; } ~~~