在进行 header() 重定向以推送文件以供下载之前,我需要显示一个文本。所以,例如
echo "text";
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.basename($file).'"');
header('Content-Transfer-Encoding: binary');
while (!feof($handle)) {
echo fgets($handle, $chunksize);
flush();
}
fclose($handle);
那可行吗?