这篇文章主要介绍了关于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; } }
相关推荐:
Atas ialah kandungan terperinci php实现解压功能的函数 . Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!