if(is_array($goodsNo)){ //배열여부확인
            $bindQuery = null;
            foreach($goodsNo as $val){ //해당 값출력
                $bindQuery[] = '?'; //값 해열저장
                $this->db->bind_param_push($this->arrBind,'i',$val); //해당값 ?에 입력
            }
            $this->arrWhere[]  = " g.goodsNo in (".implode(',',$bindQuery).")"; //출력
        }

+ Recent posts