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框架中常用的保存数据的方法,可以根据具体需求选择合适的方法来使用。