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

 

相关文章:

  • 2021-11-07
  • 2021-10-19
  • 2021-11-02
  • 2022-02-08
  • 2021-10-30
  • 2021-11-28
  • 2021-12-05
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-12
  • 2022-12-23
相关资源
相似解决方案