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

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实现下载文件并显示文件大小)