AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
``` $mysql = Db::getInstance()->init('pool'); ``` #### insert(array $data, $buildSql = false) ,单条插入,返回插入后的id号 ``` $data = $mysql->table('table')->insert([ 'uid' => 123, 'type' => 1, 'currency' => 10 ]); ``` #### insertAll(array $data, $buildSql = false),批量插入,返回插入的总条数 ``` $data = [ ['uid' => 123,'type' => 1,'currency' => 10], ['uid' => 222,'type' => 2,'currency' => 20] ]; $mysql->table('table')->insertAll($data); ```