Senin, 19 Maret 2012

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() ;
// open archive
if ($zip->open(‘archive. zip’) !== TRUE) {
die (‘Tidak Dapat Dibuka’);
}
// extract contents to destination directory
$zip->extractTo(‘/ tmp/extracted/ ‘);
// close archive
// print success message

$zip->close();
echo ‘Extract file Berhasil’;
Categories: , ,

0 comments:

Posting Komentar

Subscribe to RSS Feed Follow me on Twitter!