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

帮小弟我看一段CI代码

WBOY
WBOYOriginal
2016-06-13 13:29:57852browse

帮我看一段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();

Statement:
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