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']); } ~~~