當(dāng)前位置:博客首頁(yè)>>PHP >> 閱讀正文

PHP在線(xiàn)壓縮zip函數(shù)-php創(chuàng)建zip

作者: 鄭曉 分類(lèi): PHP 發(fā)布于: 2011-05-26 17:57 瀏覽:8,174 沒(méi)有評(píng)論



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;
}
}
/***** 應(yīng)用實(shí)例 ***/
$files=array('1.php', 'mail.php', 'readme.txt');
create_zip($files, 'myzipfile.zip', true);
?>

? ? ? ?

本文采用知識(shí)共享署名-非商業(yè)性使用 3.0 中國(guó)大陸許可協(xié)議進(jìn)行許可,轉(zhuǎn)載時(shí)請(qǐng)注明出處及相應(yīng)鏈接。

本文永久鏈接: http://yjfs.org.cn/php-function-php-line-compression-to-create-zip-zip.html

發(fā)表評(píng)論

change vcode