ci codeigniter 查询 获取 一条数据 db select get row_array()
时间:2016-05-31 12:16:22
收藏:0
阅读:7062
function get_one($where = array(),$select=‘*‘){ $this->db->select($select); if($where){ $this->db->where($where); } $this->db->limit(1); $query = $this->db->get(‘ych_sendreward‘); return $query->row_array(); }
评论(0)