제목 | unset 질문인데요~! | ||
---|---|---|---|
글쓴이 | 수야디벨 | 작성시각 | 2012/12/11 12:23:06 |
|
|||
안녕하세요~ 모델에서 DB에 아래처럼 접근하면 .. $this->db->order_by('total_recommend ','desc'); $this->db->limit(3); $this->db->where('categoryNo','2'); $data = $this->db->get('board'); return $data->result(); 3개의 데이터가뽑힐텐데요~ 여기서 아래처럼 제일 첫번째 데이터를 제거하고 반환 받기 위해서 $this->db->order_by('total_recommend ','desc'); $this->db->limit(3); $this->db->where('categoryNo','2'); $data = $this->db->get('board'); unset($data[0]); return $data->result(); 을 넣어주면 페이지 오류가 나던데~ 사용하는 위치가 잘못되었나요~? |
|||
다음글 | 로그인 관련 작업하려고 살펴보다가 tank_auth를 ... (3) | ||
이전글 | 액티브레코드 mysql과 mssql? (3) | ||
criuce
/
2012/12/11 12:26:08 /
추천
0
|
unset($result[0]);
이 맞지 않을까요? 그리고 unset보단 array_shift를 쓰는게 좋을것 같습니다~
배열은 0부터 시작해야 제맛이니까요~