첨부파일이 없으면 이미지 안나오고 내용만 나오게 가능한가요..??

첨부파일이 없으면 이미지 안나오고 내용만 나오게 가능한가요..??

QA

첨부파일이 없으면 이미지 안나오고 내용만 나오게 가능한가요..??

본문

 <?
 for ($i=0; $i<count($list); $i++)
 {
        $img = "<img src='$board_skin_path/img/noimage.gif' width='$img_width' height='$img_height' title='이미지 없음' border=0 style='border:1 solid #DFDFDF;'>";
        $thumb = $thumb_path.'/'.$list[$i][wr_id];
        // 썸네일 이미지가 존재하지 않는다면
        if (!file_exists($thumb)) {
            $file = $list[$i][file][0][path] .'/'. $list[$i][file][0][file];
            // 업로드된 파일이 이미지라면
            if (preg_match("/\.(jp[e]?g|gif|png)$/i", $file) && file_exists($file)) {
                $size = getimagesize($file);
                if ($size[2] == 1)
                    $src = imagecreatefromgif($file);
                else if ($size[2] == 2)
                    $src = imagecreatefromjpeg($file);
                else if ($size[2] == 3)
                    $src = imagecreatefrompng($file);
                else
                    break;
                $rate = $img_width / $size[0];
                $height = (int)($size[1] * $rate);

                // 계산된 썸네일 이미지의 높이가 설정된 이미지의 높이보다 작다면
                if ($height < $img_height)
                // 계산된 이미지 높이로 복사본 이미지 생성
                    $dst = imagecreatetruecolor($img_width, $height);
                else
                // 설정된 이미지 높이로 복사본 이미지 생성
                    $dst = imagecreatetruecolor($img_width, $img_height);
                imagecopyresampled($dst, $src, 0, 0, 0, 0, $img_width, $height, $size[0], $size[1]);
                imagejpeg($dst, $thumb_path.'/'.$list[$i][wr_id], $img_quality);
                chmod($thumb_path.'/'.$list[$i][wr_id], 0606);
            }
        }

        if (file_exists($thumb))
            $img = "<img src='$thumb' border=0 style='border:1px solid #CCCCCC;'>";
      else
            if(preg_match("/\.(swf|wma|asf)$/i","$file") && file_exists($file))
            { $img = "<script>doc_write(flash_movie('$file', 'flash$i', '$img_width', '$img_height', 'transparent'));</script>"; }
 ?> ​

 

위 소스 에서 첨부를 하지 않으면 내용만 리스트에 뿌려주고 첨부파일이 있으면 이미지나오고 리스트에 내용나오게 가능한가요..??

 

아시분 있으면 알려주세요....정말 모르겠네요...ㅜㅜ

 

이 질문에 댓글 쓰기 :

답변 1

답변을 작성하시기 전에 로그인 해주세요.
전체 20
QA 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1402호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT