我要下载ZIP。我的代码运行良好,但是写有“ Undefined time”。我尝试使用较小的文件,它可以正常工作。我要下载的当前文件是3.76 MB,不是很多。
代码
<?php
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename=boss.zip');
header('Content-Length: ' . filesize( "visite1.zip" ) );
readfile( "visite1.zip" );
?>