美文网首页CI开发资源共享
CI批量添加数据,数组的使用方法

CI批量添加数据,数组的使用方法

作者: 老牛圣斗士 | 来源:发表于2017-03-19 10:48 被阅读38次

    官方演示案例,比较傻瓜不能灵活使用

    $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')

    第一个参数为要插入的表名,第二个参数为要插入的数据,是个二维数组。

    我再此将指导大家如何拼接数组来完成批量数据的添加

    方案:

    很多人喜欢通过循环的方式来添加数据,比如循环100次,添加100条数据,效率慢

    我们使用循环将100次的数据集来拼接为数组,一次完成添加效率快

    $Randarray = array();  //定义空数组

    foreach ($randQuery->result() as $row) //循环定义数组

    {

    $item = array();

    $item['id'] = $id;

    $item['title'] = $title;

    $Randarray[] = $item;//将数组参数循环添加到空数组中

    }

    $this->db->insert_batch('lqr_quanzi_dianzan', $Randarray);

    此案例针对ci的 其他框架可以根据不同的逻辑想修改部分代码即可。

    相关文章

      网友评论

        本文标题:CI批量添加数据,数组的使用方法

        本文链接:https://www.haomeiwen.com/subject/vkjmnttx.html