CodeIgniter 之数据库操作
2019-05-28
CodeIgniter
2541
0
在使用数据库之前,我们最好将数据库进行自动连接:config/autoload.php自动加载 $autoload['libraries'] = array('database');一些常用函数; ; ; ;选择数据$this->db->select();允许你在SQL查询中写;SELECT;部分。$this->db->where();$this->db->or_where();$this->db->where_in();允许你在SQL查询中写;WHERE部分,其余各种where语句请看手册。$this->db->get();运行选择查询语句并且返回结果集。可以获取一个表的全部数据。$this->db->like();$this->db->or_like();$this-&g