不确定下载ZIP文件的时间[PHP]

时间:2018-11-29 14:37:13

标签: php

我要下载ZIP。我的代码运行良好,但是写有“ Undefined time”。我尝试使用较小的文件,它可以正常工作。我要下载的当前文件是3.76 MB,不是很多。

Window with undefined time

My folders

代码

<?php
        header('Content-Type: application/zip');
        header('Content-disposition: attachment; filename=boss.zip');
        header('Content-Length: ' . filesize( "visite1.zip" ) );
        readfile( "visite1.zip" );
?>

0 个答案:

没有答案