local-server で zip ファイルを作成して 2 つのファイルをダウンロードしようとしています。ファイルは zip 形式でダウンロードされますが、解凍しようとするとエラーが発生します: End-of-central-directory signature not found. このファイルは zip ファイルではないか、マルチパート アーカイブの 1 つのディスクを構成しています。後者の場合、中央ディレクトリと zip ファイルのコメントは、このアーカイブの最後のディスクにあります。
私がこれに使用している次のコード:
<?php
$file_names = array('iMUST Operating Manual V1.3a.pdf','iMUST Product Information Sheet.pdf');
//Archive name
$archive_file_name=$name.'iMUST_Products.zip';
//Download Files path
$file_path=$_SERVER['DOCUMENT_ROOT'].'/Harshal/files/';
zipFilesAndDownload($file_names,$archive_file_name,$file_path);
function zipFilesAndDownload($file_names,$archive_file_name,$file_path)
{
//echo $file_path;die;
$zip = new ZipArchive();
//create the file and throw the error if unsuccessful
if ($zip->open($archive_file_name, ZIPARCHIVE::CREATE )!==TRUE) {
exit("cannot open <$archive_file_name>\n");
}
//add each files of $file_name array to archive
foreach($file_names as $files)
{
$zip->addFile($file_path.$files,$files);
//echo $file_path.$files,$files."
}
$zip->close();
//then send the headers to force download the zip file
header("Content-type: application/zip");
header("Content-Disposition: attachment; filename=$archive_file_name");
header("Pragma: no-cache");
header("Expires: 0");
readfile("$archive_file_name");
exit;
}
?>
関数に渡されるすべての変数の値を確認しましたが、すべて問題ありません。これを見てください。よろしくお願いします。