jasonstealer / laravel-batch
在laravel中插入和更新批量(批量)数据
v2.3.0
2021-10-30 09:53 UTC
Requires
- ext-json: *
Requires (Dev)
- phpunit/phpunit: ^9.3@dev
README
在laravel中插入和更新批量(批量)数据
安装
composer require mavinoo/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