- 164浏览
- 2022-05-04
成功新增实例
插入成功案列
$t3=T::insert(['t'=>500]);
$t8=Db::table('t')->insert(['t'=>700]);
$t4=model('t');
$t4->t=800;
$t4=$t4->save();
$t5=new T();
$t5->t=900;
$t5= $t5->insert();//此条插入失败
返回值
{
"t3": 1,
"t4": true,
"t5": 0,
"t8": 1
}
2报错列表
$t1=T::save(['t'=>300]);//报Non-static method think\Model::save() should not be called statically
$t5=Db::table('t')->save(['t'=>300]);//报method not exist:think\db\Query->save
$t2=T::insert('t=400');//类型错误: Argument 1 passed to think\db\Query::insert() must be of the type array, string given
$t7=Db::table('t')->insert('t=600');//Argument 1 passed to think\db\Query::insert() must be of the type array, string given, called in
版权声明:
1、本文系转载,版权归原作者所有,旨在传递信息,不代表看本站的观点和立场。
2、本站仅提供信息发布平台,不承担相关法律责任。
3、若侵犯您的版权或隐私,请联系本站管理员删除。
4、本文由会员转载自互联网,如果您是文章原创作者,请联系本站注明您的版权信息。