2008년 3월 17일 월요일

php에서 zip 파일 만들고 저장하기

Perfect Web site Scripts [SmiledSoft.com]

zip 파일을 생성하고 읽고 하는 class.
유료버전이랑 무료버전이 있는데, 무료버전만으로도 충분해보인다.

여기에 더해서 Zip File Functions (Read Only Access) 에 있는 소스를 더하면 디렉토리를 묶어서 한번에 zip 파일로 만드는것도 가능하다


-- ss_zip 클래스를 이용해서 하위 디렉토리와 안에 들어있는 파일까지 몽땅 zip 으로 만들기 소스 --

function make_archive( $dir , &$zip, $extdir="")
{
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false ) {
if( $file != "." && $file != ".." )
{
if( is_dir( $dir . $file ) )
{

$zip->add_file($dir.$file,$extdir.$file);

make_archive($dir.$file."/" , $zip, $extdir.$file."/");

}
else
{

$zip->add_file($dir.$file,$extdir.$file);
}
}
}
closedir($dh);
}
}
return true;
}

댓글 없음: