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

2017-12-13  本文已影响102人  liuboxx1

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);
}

上一篇下一篇

猜你喜欢

热点阅读