distinct()->get()->toArray(); $data = []; foreach ($res as $v){ array_push($data,$v['category_id']); } return $data; } /** * 获取book * @return array */ public static function getBook($bid){ $res = self::select('*')->where('id',$bid)->first(); return $res; } }