这里自定义了一个函数用于将zip文件解压缩,可以指定解压缩的路径
/**
* PHP解压缩zip文件
*
* @param
* @arrange 512-笔记网: jb51.cc
**/
<?PHP
function unzip($location,$newLocation){
if(exec("unzip $location",$arr)){
mkdir($newLocation);
for($i = 1;$i< count($arr);$i++){
$file = trim(preg_replace("~inflating: ~","",$arr[$i]));
copy($location.'/'.$file,$newLocation.'/'.$file);
unlink($location.'/'.$file);
}
return TRUE;
}else{
return FALSE;
}
}
?>
// Use the code as following:
<?PHP
include 'functions.PHP';
if(unzip('zipedfiles/test.zip','unziped/myNewZip'))
echo 'Success!';
else
echo 'Error';
?>
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:https://www.f2er.com/php/528289.html