PHP Zip 압축 해제(풀기)

php 설치시 옵션을

--enable-zip  을 주어 설치 한다

test.zip 파일을 다음과 같이 "/home/wwwftp/public_html/test"  경로에 풀어준다.

<?php
$zip = new ZipArchive;
if ($zip->open('test.zip') === TRUE) {
    $zip->extractTo('/home/wwwftp/public_html/test');
    $zip->close();
    echo 'ok';
} else {
    echo 'failed';
}
?>

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다