Home > Backend Development > PHP Tutorial > 帮小弟我看一段CI代码

帮小弟我看一段CI代码

WBOY
Release: 2016-06-13 10:25:00
Original
801 people have browsed it

帮我看一段CI代码
$this->db->like('caller_ip',$condition);
   
$this->db->select('caller_ip, send_ip,star_time,end_time');
   
$query = $this->db->get('voice');

return $query->result_array();

模糊这样写对么?不对改怎么改?

------解决方案--------------------
隐隐约约冒失有个get_where方法。是吗
class PitypeModel extends Model {
$query = array(); 
$query = $this->db->get_where(‘table_name’, array('recodname' => $pitypetype));
$query->result();

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