PHP-在Ci中插入多行

时间:2018-10-30 10:05:53

标签: php codeigniter

我有一个数组['abc','xyz'];

我想一次插入两行

我不要

loop(){
 $this->db->insert()
 }

这将两次运行insery查询

使用CI框架 这个数组来自用户

4 个答案:

答案 0 :(得分:1)

foreach ($this->input->post("name") as $value) {        
            $name[] = array(
                'name'=>$value,
            );
        }
$this->db->insert_batch("names",$name);

答案 1 :(得分:0)

yourModel.php

public function urfunctionName($data)
{
  foreach($data as $res)
  {
     $this->db->insert('table_name',$res);
  }
}
  

希望它对您有用

答案 2 :(得分:0)

您首先需要构建“批量”插入查询。之后,调用insert_batch方法。

$array = ['abc','xyz'];
$batchInsertArray = buildBatchInsertArray($array);

$this->db->insert_batch('myTable', $batchInsertArray);

function buildBatchInsertArray(array $array): array
{
    $batchInsertArray = [];

     foreach ($array as $item) {
       $batchInsertArray[] = [
           'columnName' => $item
       ];
    }

    return $batchInsertArray;
}

答案 3 :(得分:0)

$data = array(
        array(
                'title' => 'My title',
                'name' => 'My Name',
                'date' => 'My date'
        ),
        array(
                'title' => 'Another title',
                'name' => 'Another Name',
                'date' => 'Another date'
        )
);

$this->db->insert_batch('mytable', $data);

// Produces: INSERT INTO mytable (title, name, date) VALUES ('My title', 'My name', 'My date'),  ('Another title', 'Another name', 'Another date')

引用:: query_builder inserting-data