PHP压缩文件

5年以前  |  阅读数:959 次  |  编程语言:PHP 

$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){
        }
    }

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8