请参阅下面的截图。有人从我的网站下载文件时,下载大小没有显示。因此,用户无法知道剩余多少,大小是多少。有人可以帮助我或告诉任何想法解决这个问题吗?这是服务器的问题吗?或者我必须添加任何代码或其他内容?
答案 0 :(得分:1)
您应该从服务器正确发送标头 更好地看一下: - http://php.net/manual/en/function.readfile.php
示例
<?php
$file = 'yourfile.apk';
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>