압축해서 다운로드 받기
$dir_file = "$docroot/fotofiles/";// 파일이 있는 디렉토리 $dir_tar = "$docroot/fotofiles/down/";// 파일을 묶어서 저장할 디렉토리 $tarname = "down.tar.gz";// 묶은 파일명 $downfilename = "홍길동사진.tar.gz";// 다운로드받을 파일명 chdir($dir_tar); exec("tar czf $tarname ../file1 ../file2 ../file3"); sleep(1);//파일이 많거나 용량이 큰경우, gzip으로 압축할 경우 1초 정도 대기 chdir($dir_file); if(eregi("(MSIE 5.5|MSIE 6.0)", $HTTP_USER_AGENT)){ header("content-type..