Home > Backend Development > PHP Tutorial > CI框架AR操作(数组形式)实现插入多条sql数据的方法_PHP

CI框架AR操作(数组形式)实现插入多条sql数据的方法_PHP

WBOY
Release: 2016-05-27 10:15:37
Original
762 people have browsed it

本文实例讲述了CI框架AR操作实现插入多条sql数据的方法。分享给大家供大家参考,具体如下:

如果你不使用AR的话,你可以这样做:

INSERT INTO TABLE (FIELDS) VALUES ('1','2'),('3','4');
$this->db->query($sql);

Copy after login

个人还是喜欢CI的AR操作,老版本(2.0一下)应该没有插入多条数据的操作,新版本可以用:

$this->db->insert_batch();

如下案例:

$data = array(
 array(
  'name' => 'PHP' ,
  'url' => 'http://www.bitsCN.com'
 ),
 array(
  'name' => '' ,
  'url' => 'http://www.bitsCN.com'
 )
);
$this->db->insert_batch('mytable', $data);

Copy after login

以上生成的sql就是这样的:

代码如下:
INSERT INTO mytable (name, url) VALUES ('PHP','http://www.bitsCN.com'),( '', 'http://www.bitsCN.com')

总结:ci框架中的数据库快捷操作类中的数据参数一般为一维关联数组

更多关于CodeIgniter相关内容感兴趣的读者可查看本站专题:《codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《php优秀开发框架总结》、《ThinkPHP入门教程》、《ThinkPHP常用方法总结》、《Zend FrameWork框架入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》

希望本文所述对大家基于CodeIgniter框架的PHP程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template