1. 압축 풀기
// mkdir {압축풀 디렉토리명}
// unzip {압축화일명} -d{압축풀 디렉토리명}
$_ROOT = "{압축풀 절대경로}";
$dir_op = $_ROOT."/압축풀 폴더 명";
mkdir($dir_op); //폴더 생성
chmod($dir_op, 0777); //권한 부여
exec("unzip 압축파일명 -d $dir_op"); //알집 해제
//exec("unzip test.zip -d $dir_op");
2. 압축 하기
exec("zip -r output.zip 압축풀경로");