当前位置:Gxlcms > PHP教程 > php实现解压功能的函数

php实现解压功能的函数

时间:2021-07-01 10:21:17 帮助过:28人阅读

这篇文章主要介绍了关于php实现解压功能的函数 ,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

function unzip_file(string $zipName,string $dest){
  //检测要解压压缩包是否存在
  if(!is_file($zipName)){
    return false;
  }
  //检测目标路径是否存在
  if(!is_dir($dest)){
    mkdir($dest,0777,true);
  }
  $zip=new ZipArchive();
  if($zip->open($zipName)){
    $zip->extractTo($dest);
    $zip->close();
    return true;
  }else{
    return false;
  }
}

相关推荐:

php多文件压缩的功能函数

以上就是php实现解压功能的函数 的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行