PHPでzipファイルを解凍するサンプル

PHPコード:

﹤?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;
}
}
?﹥
//処理プログラム:
﹤?php
include 'functions.php’;
if(unzip('zipedfiles/ziptest_startnews24.zip’,’unziped/myNewZip’))
echo '成功!’;
else
echo 'エラー’;
?﹥

PHP

Posted by arkgame