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

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

贊助商鏈接:

主站蜘蛛池模板: 铁岭县| 台中市| 文安县| 闵行区| 无棣县| 扎兰屯市| 彭泽县| 桃园县| 开原市| 文安县| 江达县| 科技| 广宁县| 喀喇沁旗| 仙桃市| 宁夏| 天津市| 华容县| 茶陵县| 辉县市| 舞钢市| 顺昌县| 彭山县| 田林县| 电白县| 赣州市| 固原市| 安福县| 浠水县| 诏安县| 古蔺县| 湟源县| 龙口市| 巴林左旗| 巴彦淖尔市| 沅陵县| 舒城县| 稷山县| 大港区| 金沙县| 昌吉市|