成人午夜激情影院,小视频免费在线观看,国产精品夜夜嗨,欧美日韩精品一区二区在线播放

PHP文件Zip壓縮和解壓縮的函數(shù)源代碼

2010-08-28 10:56:04來源:西部e網(wǎng)作者:

PHP文件 Zip 壓縮

/* creates a compressed zip file */
function create_zip($files = array(),$destination = '',$overwrite = false) {
//if the zip file already exists and overwrite is false, return false
if(file_exists($destination) && !$overwrite) { return false; }
//vars
$valid_files = array();
//if files were passed in...
if(is_array($files)) {
//cycle through each file
foreach($files as $file) {
//make sure the file exists
if(file_exists($file)) {
$valid_files[] = $file;
}
}
}
//if we have good files...
if(count($valid_files)) {
//create the archive
$zip = new ZipArchive();
if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
return false;
}
//add the files
foreach($valid_files as $file) {
$zip->addFile($file,$file);
}
//debug
//echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;

//close the zip -- done!
$zip->close();

//check to make sure the file exists
return file_exists($destination);
}
else
{
return false;
}
}
/***** Example Usage ***/
$files=array('file1.jpg', 'file2.jpg', 'file3.gif');
create_zip($files, 'myzipfile.zip', true);


PHP解壓縮 Zip 文件

/**********************
*@file - path to zip file
*@destination - destination directory for unzipped files
*/
function unzip_file($file, $destination){
// create object
$zip = new ZipArchive() ;
// open archive
if ($zip->open($file) !== TRUE) {
die (’Could not open archive’);
}
// extract contents to destination directory
$zip->extractTo($destination);
// close archive
$zip->close();
echo 'Archive extracted to directory';
}

關(guān)鍵詞:PHP

贊助商鏈接:

主站蜘蛛池模板: 万年县| 彰武县| 蒙城县| 塔河县| 教育| 建阳市| 湾仔区| 滦南县| 昆明市| 乌苏市| 海阳市| 兰考县| 开鲁县| 平乡县| 渑池县| 军事| 泽库县| 大兴区| 桦南县| 建平县| 庄浪县| 汽车| 沾益县| 昭觉县| 屏山县| 闽侯县| 迁安市| 芜湖县| 资源县| 朔州市| 南召县| 株洲市| 永兴县| 剑河县| 普兰店市| 高邑县| 晋城| 德昌县| 吴川市| 郸城县| 麻江县|