我想知道在使用PHPExcel创建文件后如何重定向页面。创建的文件是正常的,但不是重定向到另一个页面。以下是一些代码。
$excel -> setActiveSheetIndex(0);
$_SESSION["information"] = "Motor Line Checking Completed.";
header("Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
header("Content-Disposition: attachment;filename='".$report_name.".xlsx'");
header("Cache-Control: max-age=0");
$writer = PHPExcel_IOFactory::createWriter($excel, "Excel2007");
$writer -> save('php://output');
exit;
header("Location: ".$_SERVER["HTTP_HOST"]."/../../");
exit;
注意:
exit;
之后删除save();
,则xlsx文件将被损坏。header("Location:...");
之前移动save();
,它将重定向但不会创建xlsx。我想要的是创建xlsx并重定向页面。
答案 0 :(得分:0)
我提出了一个解决方案,只需在重定向页面上提供链接即可。从该页面我可以为该链接创建触发器,只需自动下载文件。
从创建文件的页面:
$writer = PHPExcel_IOFactory::createWriter($excel, "Excel2007");
$metaDatas = stream_get_meta_data(tmpfile());
$tmpFilename = $metaDatas['uri'];
$writer -> save($tmpFilename);
$newfile = "../outbox/".$report_name."_".substr(date("Y"), -2).date("mdhis").".xlsx";
rename($tmpFilename, $newfile);
$tmpary = explode("/", $newfile);
$_SESSION["download"] = $tmpary[count($tmpary) - 1];
$_SESSION["information"] = "File Creation Completed.";
来自重定向的网页:
<?php
if(isset($_SESSION["information"])) {
echo $_SESSION["information"];
if(isset($_SESSION["download"])) {
?>
<a href="outbox/<?php echo $_SESSION["download"]; ?>">
<button class="download" type="button">Click here to download <?php echo $_SESSION["download"]; ?> file.</button>
</a>
<?php
}
session_unset();
}
?>
答案 1 :(得分:0)
我遇到了同样的问题,我的解决方法是打开一个新的下载链接,然后将自己重定向到我需要的地方