码迷,mamicode.com
首页 > 数据库 > 详细

ci codeigniter 查询 获取 一条数据 db select get row_array()

时间:2016-05-31 12:16:22      阅读:7062      评论:0      收藏:0      [点我收藏+]

标签:

    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();
    }

 

ci codeigniter 查询 获取 一条数据 db select get row_array()

标签:

原文地址:http://www.cnblogs.com/shaoing/p/5545205.html

(2)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!