woodynew / laravel-batch
在Laravel中批量插入和更新数据
v2.3.5
2023-04-04 08:40 UTC
Requires
- ext-json: *
Requires (Dev)
- phpunit/phpunit: ^9.3@dev
README
在Laravel中批量插入和更新数据
安装
composer require woodynew/laravel-batch
服务提供者
在app.php文件中 providers 数组中添加
Mavinoo\Batch\BatchServiceProvider::class,
别名
在app.php文件中 aliases 数组中添加
'Batch' => Mavinoo\Batch\BatchFacade::class,
示例更新1
use App\Models\User; $userInstance = new User; $value = [ [ 'id' => 1, 'status' => 'active', 'nickname' => 'Mohammad' ] , [ 'id' => 5, 'status' => 'deactive', 'nickname' => 'Ghanbari' ] , ]; $index = 'id'; Batch::update($userInstance, $value, $index);
示例更新2
use App\Models\User; $userInstance = new User; $value = [ [ 'id' => 1, 'status' => 'active' ], [ 'id' => 5, 'status' => 'deactive', 'nickname' => 'Ghanbari' ], [ 'id' => 10, 'status' => 'active', 'date' => Carbon::now() ], [ 'id' => 11, 'username' => 'mavinoo' ] ]; $index = 'id'; Batch::update($userInstance, $value, $index);
示例增量/减量
use App\Models\User; $userInstance = new User; $value = [ [ 'id' => 1, 'balance' => ['+', 500] // Add ] , [ 'id' => 2, 'balance' => ['-', 200] // Subtract ] , [ 'id' => 3, 'balance' => ['*', 5] // Multiply ] , [ 'id' => 4, 'balance' => ['/', 2] // Divide ] , [ 'id' => 5, 'balance' => ['%', 2] // Modulo ] , ]; $index = 'id'; Batch::update($userInstance, $value, $index);
示例插入
use App\Models\User; $userInstance = new User; $columns = [ 'firstName', 'lastName', 'email', 'isActive', 'status', ]; $values = [ [ 'Mohammad', 'Ghanbari', 'emailSample_1@gmail.com', '1', '0', ] , [ 'Saeed', 'Mohammadi', 'emailSample_2@gmail.com', '1', '0', ] , [ 'Avin', 'Ghanbari', 'emailSample_3@gmail.com', '1', '0', ] , ]; $batchSize = 500; // insert 500 (default), 100 minimum rows in one query $result = Batch::insert($userInstance, $columns, $values, $batchSize);
// result : false or array sample array result: Array ( [totalRows] => 384 [totalBatch] => 500 [totalQuery] => 1 )
辅助函数 batch()
// ex: update $result = batch()->update($userInstance, $value, $index); // ex: insert $result = batch()->insert($userInstance, $columns, $values, $batchSize);
测试
如果您项目中尚未安装phpunit,请先运行 composer require phpunit/phpunit
在Laravel应用的根目录下,运行 ./vendor/bin/phpunit ./vendor/mavinoo/laravel-batch/tests
捐赠
BTC地址: 16XDxkcqiEJ8DYf4xWxu7WK3Peo29TvXxD