Php-在词中插入多行



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

我想一次插入两行

我不想要

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

这将运行两次插入查询

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

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

yourModel.php

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

希望它能为你工作

您需要首先构建"批处理"插入查询。之后调用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;
}
$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插入数据

相关内容

  • 没有找到相关文章

最新更新