美文网首页
php实现下载文件并显示文件大小

php实现下载文件并显示文件大小

作者: liuboxx1 | 来源:发表于2017-12-13 18:05 被阅读102次

public function down() {
$androidFile= './android/wps.apk';
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".basename($androidFile));
header("Accept-Ranges: bytes");
header("Content-Length: ".filesize($androidFile));
readfile($androidFile);
}

相关文章

网友评论

      本文标题:php实现下载文件并显示文件大小

      本文链接:https://www.haomeiwen.com/subject/iqezixtx.html