cxy / laravel-batch
在Laravel中批量插入和更新
2.3.6.1
2024-04-12 03:21 UTC
Requires
- ext-json: *
Requires (Dev)
- phpunit/phpunit: ^9.3@dev
This package is auto-updated.
Last update: 2024-09-13 13:33:04 UTC
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 )
从模型中调用示例
将HasBatch特性添加到模型中
namespace App\Models; use Mavinoo\Batch\Traits\HasBatch; class User extends Model { use HasBatch; }
并从模型中调用batchUpdate()或batchInsert()
use App\Models\User; // ex: update User::batchUpdate($value, $index); // ex: insert User::batchInsert($columns, $values, $batchSize);
助手函数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地址:14XQEuVKuZp8q59h3Jk9Q2wi45368aEbyG
DOGE地址:DMsFurgSP2LTny8wkco3cE3ZhgQrFAJLp8