如何在cakephp 3.2

时间:2016-09-16 10:48:08

标签: php excel cakephp cakephp-3.x cakephp-3.2

我正在为我的项目做一个excel插件,我希望在用户下载完成后取消链接该excel文件,或者在显示下载的弹出窗口中取消用户取消。

我已经尝试了取消链接代码来完成工作,但由于有响应,我有点混淆如何制作它。 下面我附上了部分代码。 任何建议都将受到高度赞赏。

 $filename = time() . "-ocma-sales-report-" . date("Y-m-d") . ".xlsx"; //'.time() . '-ocma-sales-report-' . date("Y-m-d").'.xls'
                        $objWriter->save("temp_excel/$filename");

                        $filePath = 'temp_excel/' . $filename;
                        $this->response->file($filePath, ['download' => TRUE, 'name' => $filename]);

                        return $this->response;
                        //unlink($filename);

                        exit;

1 个答案:

答案 0 :(得分:0)

您可以使用FileSystem / File类来创建,修改和删除文件。同样对于下载文件,您必须使用简单的PHP代码,因为$this->response->file($filePath, ['download' => TRUE, 'name' => $filename]);  执行函数后不允许任何操作。

ob_clean();

$filePath = 'temp_excel/' . $filename;
$size   = filesize($filePath);

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . $filename); 
header('Content-Transfer-Encoding: binary');
header('Connection: Keep-Alive');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . $size);
readfile($filePath);

$file = new \Cake\Filesystem\File($filePath);
$file->delete();
exit();