1

我有以下代码,如您所见,我用它来创建一个新目录,然后解压缩一个文件。

<?php

function unzip_to_s3() { 

// Set temp path
$temp_path = 'wp-content/uploads/gravity_forms/1-9e5dc27086c8b2fd2e48678e1f54f98c/2013/02/tmp/';

// Get filename from Zip file
$zip_file = 'archive.zip';

// Create full Zip file path
$zip_file_path = $temp_path.$zip_file;

// Generate unique name for temp sub_folder for unzipped files
$temp_unzip_folder = uniqid('temp_TMS_', true);

// Create full temp sub_folder path
$temp_unzip_path = $temp_path.$temp_unzip_folder;

// Make the new temp sub_folder for unzipped files
if (!mkdir($temp_unzip_path, '0755', true)) {
    die('Error: Could not create path: '.$temp_unzip_path);
}

// Unzip files to temp unzip folder, ignoring anything that is not a .mp3 extension
$zip = new ZipArchive();
$filename = $zip_file_path;

if ($zip->open($filename)!==TRUE) {
   exit("cannot open <$filename>\n");
}

for ($i=0; $i<$zip->numFiles;$i++) {
   $info = $zip->statIndex($i);
   $file = pathinfo($info['name']);
   if(strtolower($file['extension']) == "mp3") {
        file_put_contents(basename($info['name']), $zip->getFromIndex($i));
   } else {
   $zip->deleteIndex($i);
   }
}
$zip->close();

}

unzip_to_s3();

?>

解压缩代码由我的另一篇文章中的@TotalWipeOut 提供。它目前仅将 mp3 文件解压缩到我的基本目录,但我想将它们放在我新创建的文件夹中。

我对 PHP 很陌生,所以一直在尽我最大的努力,但我不知道如何更改file_put_contents(basename($info['name']), $zip->getFromIndex($i));行以将文件放入我的新文件夹中?

4

1 回答 1

1

正如 Marc B. 提到的,您需要包含要放入文件的目录的路径。

使用您的代码:

file_put_contents($temp_unzip_path."/".basename($info['name']), $zip->getFromIndex($i));

我还建议阅读更多关于 PHP 的基础知识。

于 2013-02-15T15:13:13.837 回答