| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function batchInsertIgnoreCommand(string $table, array $columns, array $rows) |
||
| 23 | { |
||
| 24 | $sql = Yii::$app->db->queryBuilder |
||
| 25 | ->batchInsert($table, $columns, $rows); |
||
| 26 | $sql = str_replace('INSERT INTO ', 'INSERT IGNORE INTO ', $sql); |
||
| 27 | |||
| 28 | return Yii::$app->db->createCommand($sql); |
||
| 29 | } |
||
| 30 | } |