繁体   English   中英

如何使用PHP代码在服务器(Linux)中解压缩文件

[英]How to unzip file in server(linux) with php code

我尝试了很多代码,但是没有用。

<?php
$file = $_GET['file'];

if (isset($file))
{
   echo "Unzipping " . $file . "<br>";
   if(system('unzip '. $file.' -d dirtounzipto ' ))
   {echo 'GGWP';}else{echo 'WTF';}

   exit;
}?>

我如何解压缩服务器。 使用“系统”或“ shell_exec”代码。

$zip_filename = "test.zip";
$zip_extract_path = "/";
try{
$zip_obj = new ZipArchive;
            if (file_exists($zip_filename)) {
                $zip_stat = $zip_obj->open($zip_filename);
                if ($zip_stat === TRUE) {
                    $res = $zip_obj->extractTo($zip_extract_path);
                    if ($res === false) {

                            throw new Exception("Error in extracting file on server.");

                    }
                    $zip_obj->close();


                } else {
                    throw new Exception("Error in open file");
                }
            } else {
                throw new Exception("zip file not found for extraction");
            }
}catch (Exception $e) {

    echo $e->getMessage();
}

请充分利用PHP的ZipArchive

<?php
$zip = new ZipArchive;
if ($zip->open('test.zip') === TRUE) {
    $zip->extractTo('/my/destination/dir/');
    $zip->close();
    echo 'ok';
} else {
    echo 'failed';
}
?>

版本要求:PHP> = 5.2.0,PECL zip> = 1.1.0


更新要自动创建目标路径,可以使用:

mkdir($path, 0755, true);

会自动创建所需的文件夹。

PHP具有用于处理压缩文件的内置扩展。 为此,无需使用系统调用。 ZipArchive 文档是一种选择。

// assuming file.zip is in the same directory as the executing script.
$file = 'file.zip';

// get the absolute path to $file
$path = pathinfo(realpath($file), PATHINFO_DIRNAME);

//folder name as per zip file name
$foldername = basename($file, ".zip");

mkdir($foldername, 0755, true);
$path = $path . "/" . $foldername;

$zip = new ZipArchive;
$res = $zip->open($file);
if ($res === TRUE) {
  // extract it to the path we determined above
  $zip->extractTo($path);
  $zip->close();
  echo "WOOT! $file extracted to $path";
} else {
  echo "Doh! I couldn't open $file";
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM