2015年3月21日

扩展CI控制器

摘要: 扩展CI控制器 appliction/core/MY_Controller.php appliction/core/config.php $config['subclass_prefix']='MY_'; 阅读全文

posted @ 2015-03-21 14:56 ziyi_ang 阅读(74) 评论(0) 推荐(0) 编辑

CI 中的AR 连贯操作

摘要: SELECT `id`, `username` FROM (`blog_user`) ORDER BY `id` desc LIMIT 2, 3 $res=$this->db->select('id,username') ->from('user') //... 阅读全文

posted @ 2015-03-21 14:43 ziyi_ang 阅读(86) 评论(0) 推荐(0) 编辑

CI 数据库增删改查

摘要: 自增id $this->db->insert_id(); 受影响行数 $this->db->affected_rows();Active Record 1.application/config/database.php $active_record=TRUE; 2.applica... 阅读全文

posted @ 2015-03-21 10:52 ziyi_ang 阅读(235) 评论(0) 推荐(0) 编辑

导航