咔叽游戏

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 96|回复: 0

[PHP编程] PHP Zip解压 文件在线解压缩的函数代码

[复制链接]
  • TA的每日心情
    无聊
    2019-5-27 08:20
  • 签到天数: 4 天

    [LV.2]圆转纯熟

    发表于 2019-10-9 17:17:33 | 显示全部楼层 |阅读模式
    PHP在线解压缩Zip 文件函数代码,需要在线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';
    }

    PHP Zip压缩 在线对文件进行压缩的函数

    QQ|免责声明|小黑屋|手机版|Archiver|咔叽游戏

    GMT+8, 2024-3-29 03:15

    Powered by Discuz! X3.4

    © 2001-2023 Discuz! Team.

    快速回复 返回顶部 返回列表