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();

?>

解凍コードは、私の他の投稿の 1 つから @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 に答える