PHP
·
发表于 5年以前
·
阅读量:8296
$filePath
为被压缩的文 件,$dest
为目的压缩包
function zipFile($filePath,$dest)
{
try{
$zip = new ZipArchive();
$zip->open($dest,ZipArchive::CREATE);
$zip->addFile($filePath,basename($filePath));
$zip->close();
}catch (Exception $ex){
}
}