我有以下代码,您可以看到我用来创建一个新目录然后解压缩文件。
<?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));
行以将文件放入我的新文件夹中?
答案 0 :(得分:1)
正如Marc B.所提到的,您需要包含要放入文件的目录的路径。
使用您的代码:
file_put_contents($temp_unzip_path."/".basename($info['name']), $zip->getFromIndex($i));
我还建议您阅读更多有关PHP基础知识的内容。