ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
~~~ public function getCateList() { set_time_limit(0); $limit = I('limit', 10, 'intval'); $lastid = I('lastid', 0, 'intval'); if($lastid>0){ $map['id'] = array('lt', $lastid); } $list = M('weiba_category')->where($map)->order('id desc')->field('id, name,logo,token,isshow')->limit($limit)->select(); foreach ($list as &$vo) { //$vo['name'] = true; //$vo['logo'] = ''; //$vo['img'] = get_cover_url($vo['img']); //$vo['cTime'] = time_format($vo['cTime']); } ~~~