메뉴 건너뛰기

프로그램언어

조회 수 912 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

 

1) 업로드 페이지 VIEW

 

 

 

 

2) 파일 선택 후 사진 미리보기

 

 

 

이미지파일 업로드시 미리보기 가능, 이미지 좌측 상단에 x버튼 클릭시 해당 이미지 제거가능

 

압축하여 소스파일을 업로드 해놨습니다.

 

(php 코드 미리보기)

<?php
{		
	$dir = "./img_dir";// 저장될 dir
	if( !file_exists( $dir ) )	mkdir( $dir );//dir이 없으면 만들기
	$file_types = array( "png", "jpeg", "jpg", "gif" );//업로드 허용할 파일확장자
	$upload_check = false;
	$msg = "업로드를 실패했습니다.";
//	system(" rm -r $dir/*.png");

	for($i=0; $i<$_POST['image_count']; $i++) 
	{
		$img_file = $_FILES[$i];//POST로 넘어온 file 데이터
		$ext = substr(strrchr($img_file['name'], '.'), 1); //확장자 구하기
		$file_name = "$i.$ext";// 파일명 변경하기
		if( in_array($ext, $file_types) )// POST로 넘어온 file 확장자 체크
		{
			if( move_uploaded_file($img_file['tmp_name'], "$dir/$file_name") )//파일 업로드
			{
				if( $ext != "png" )//png 가 아니면
				{
					system( "convert $dir/$file_name $dir/$i.png" );//  ubuntu pkg imagemagick 으로 png파일로 컨버터 확장자를 변경
					if( file_exists( "$dir/$file_name" ) )
						system(" rm $dir/$file_name" );
				}
				$upload_check = true;
			}
			else error_log( "error" );
		}
	}
	if( $upload_check )
	{
		$msg = "업로드되었습니다.";
	}
	echo $msg;
}

?>

 


List of Articles
번호 제목 날짜 조회 수
280 DB 내용을 화면에 출력(이중 for 문) 2015.04.14 21246
279 POST값 통째로 인코딩하기 1 2015.04.06 21175
278 체크박스, post 로 넘기고 받아서 다시 체크하기, checkbox 2017.03.07 21129
277 PHP continue 문 file 2015.04.14 21097
276 FPDF - PHP로 PDF 만들기 2014.02.27 21073
275 RSSReader Class 제작 및 Reader 만들기 file 2016.08.22 21042
274 Ajax로 구연한 실시간 서버시간출력 file 2017.03.06 21031
273 PHP switch 문 file 2015.04.14 20993
272 PHP error 메시지 출력 file 2015.04.14 20924
271 preg_match (정규표현식 매치를 수행합니다) 2016.12.23 20843
270 검색어 처리 루틴 2015.04.14 20778
269 array_slice 배열의 일부를 추출 2016.12.23 20775
268 템플릿 관련 정보 2016.08.22 20732
267 PHP 소스 : 이미지 리사이즈, 섬네일 2014.03.26 20704
266 HTTP Protocol의 data method - GET / POST 2016.04.22 20637
265 [PHP] 한글명 파일 다운로드받기 2014.03.26 20551
264 문자열 치환하기 2015.04.14 20492
263 stripslashes — 따옴표 처리한 문자열을 풉니다 2016.12.23 20486
262 quotemeta 모든 메타 문자앞에 역슬래쉬를 붙인 문자열을 반환 2016.12.23 20461
261 stripcslashes — addcslashes()로 인용한 문자열을 되돌림 2016.12.23 20442
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved