ThinkPHP保存數據的方法有以下幾種:
$user = new User;
$user->name = 'John';
$user->email = 'john@example.com';
$user->save();
User::create(['name' => 'John', 'email' => 'john@example.com']);
User::insert([
['name' => 'John', 'email' => 'john@example.com'],
['name' => 'Jane', 'email' => 'jane@example.com'],
]);
DB::table('users')->insert([
'name' => 'John',
'email' => 'john@example.com',
]);
$id = DB::table('users')->insertGetId([
'name' => 'John',
'email' => 'john@example.com',
]);
這些都是ThinkPHP框架中常用的保存數據的方法,可以根據具體需求選擇合適的方法來使用。