** 更新 - 動作することはわかっていました。行全体ではなくパラメーターのみをエコーするように iframe コードを修正しました。何とかこれで直りました。これで、ファイルを非同期でダウンロードして、現在の php で処理を続行できます **
ヘッダーと readfile() の処理に頭を悩ませようとしています。readfile() が呼び出された後、コードは実行されないようです。「1 つの HTTP リクエスト、1 つのファイル」というルールのためだと思います。
おそらくこの制限を回避するために iframe を使用するという提案を読みました。この関数を別のファイル (writezip など) に入れて、次のような別のファイルから呼び出してみました。
<!-- this code works and allows for an invisible file transfer-->
<iframe src="<? echo 'writezip.php' ?>" height="0px" width="0px" frameBorder="0" id="getfileurl"> </iframe>
<!-- this code does not and will not run the iframe asynchronously -->
<!-- Remove this line for a working solution -->
<? echo '<iframe src="Untitled-1.php">' ?>
<? echo "File was sent to you"; ?>
しかし、これは機能していないようです (関数宣言が独自のファイルにある場合は削除しました。そのため、ファイルが読み込まれたときに実行されます)。助言がありますか?「ファイルが送信されました」というメッセージをどのように表示しますか - よろしくお願いします
<?php
function writezip(){
$fullfilename = "post.zip";
$outfilename = "test.zip";
$mode = "download";
if (file_exists($fullfilename)){
// Parse Info / Get Extension
$fsize = filesize($fullfilename);
$path_parts = pathinfo($fullfilename);
$ext = strtolower($path_parts["extension"]);
// Determine Content Type
switch ($ext) {
case "pdf": $ctype="application/pdf"; break;
case "exe": $ctype="application/octet-stream"; break;
case "zip": $ctype="application/zip"; break;
case "doc": $ctype="application/msword"; break;
case "xls": $ctype="application/vnd.ms-excel"; break;
case "ppt": $ctype="application/vnd.ms-powerpoint"; break;
case "gif": $ctype="image/gif"; break;
case "png": $ctype="image/png"; break;
case "jpeg":
case "jpg": $ctype="image/jpg"; break;
default: $ctype="application/force-download";
}
header("Pragma: public"); // required
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false); // required for certain browsers
header("Content-Type: $ctype");
$outfilename = ($outfilename=="" ? basename($fullfilename) : $outfilename);
if ($mode == "view"){
// View file
header('Content-Disposition: inline; filename='.$outfilename);
}
else {
// Download file
header('Content-Disposition: attachment; filename='.basename($outfilename));
}
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".$fsize);
if (ob_get_length() > 0 ) {
ob_clean();
flush();
}
readfile( $fullfilename );
die("anything here");
}
else
{
echo "File not found: ". $fullfilename;
}
}
?>