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
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!