PHP code example of sabercode / laravel-batch-update
1. Go to this page and download the library: Download sabercode/laravel-batch-update library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sabercode / laravel-batch-update example snippets
use Sabercode\LaravelBatchUpdate\BatchUpdate;
/*
* string $table 表名
* string $whereField 值不同条件字段名 如 id
* array $data 更新数据二维数组 必须包含条件字段 如
* [
* ['id'=>1,'name'=>2,'age'=>3]
* ['id'=>2,'name'=>3,'age'=>4]
* ]
* array $whereSame 值相同条件字段数组一维数组 默认为空数组 如
* ['a'=>7,'b'=>'users']
* */
BatchUpdate::doUpdate($table,$data,$whereField,$whereSame);