Contoh script php untuk keperluan extract/unzip dengan nama file archive.zip dan akan di extract ke folder /tmp/extracted/ :
// create object
$zip = new ZipArchive() ;
$zip = new ZipArchive() ;
// open archive
if ($zip->open(‘archive. zip’) !== TRUE) {
die (‘Tidak Dapat Dibuka’);
}
if ($zip->open(‘archive. zip’) !== TRUE) {
die (‘Tidak Dapat Dibuka’);
}
// extract contents to destination directory
$zip->extractTo(‘/ tmp/extracted/ ‘);
$zip->extractTo(‘/ tmp/extracted/ ‘);
// close archive
// print success message
$zip->close();
echo ‘Extract file Berhasil’;
// print success message
$zip->close();
echo ‘Extract file Berhasil’;
0 comments:
Posting Komentar