<?php
namespace app\controller;
use think\Db;
class ThinkInsert
{
public function index(){
}
public function insert(){
// $data=[
// 'username' => '李白',
// 'email' => 'emem@email.com',
// 'nicename' => '李小白'
// ];
//insert 成功返回1 ,不成功返回错误
// Db::name('user')->insert($data);
//成功返回主键ID,不成功返回错误
//return Db::name('user')->insertGetId($data);
//------------批量增加数据
$data=[
[
'username' => '李白',
'email' => 'emem@email.com',
'nicename' => '李小白'
],
[
'username' => '李白',
'email' => 'emem@email.com',
'nicename' => '李小白'
]
];
return Db::name('user')->insertAll($data);
}
}
07_TP5数据库新增
最新推荐文章于 2024-11-06 14:25:59 发布