CI 快速上手

Posted 似梦似醒

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CI 快速上手相关的知识,希望对你有一定的参考价值。

CURD

 //查询
  $sql = ‘select * from tab_city where fatherID=0‘;
$list = $this->db->query($sql)->result_array();
$list2 = $this->db->where([‘fatherID‘=>0])->get(‘tab_city‘)->result_array();
$this->db->where(‘id >=‘,3)

  $list2 = this->db->get_where(‘together_car_list‘,$where,$page_size*($page-1),($page_size))->result_array();
$this->db->insert(‘together_car_list‘, $insert_arr);
$this->db->like(‘title‘, ‘match‘);
$this->db->like(‘title‘, ‘match‘);
$this->db->or_not_like(‘body‘, ‘match‘);
$this->db->like(‘title‘, ‘match‘, ‘before‘);    // Produces: WHERE `title` LIKE ‘%match‘ ESCAPE ‘!‘
$this->db->like(‘title‘, ‘match‘, ‘after‘); // Produces: WHERE `title` LIKE ‘match%‘ ESCAPE ‘!‘
$this->db->like(‘title‘, ‘match‘, ‘both‘);  // Produces: WHERE `title` LIKE ‘%match%‘ ESCAPE ‘!‘
 
$this->db->order_by(‘title‘, ‘DESC‘);
$this->db->order_by(‘title DESC, name ASC‘);
$this->db->group_by("title");
$this->db->group_by(array("title", "date"));
echo $this->db->last_query();
 

 

 

//查询   

以上是关于CI 快速上手的主要内容,如果未能解决你的问题,请参考以下文章

Jenkins快速上手

vuex 快速上手,具体使用方法总结(含使用例子)

新浪SAE快速上手教程

《Python编程快速上手》6.7实践项目代码

MVC的工作原理

c#代码片段快速构建代码