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);
}
网友评论