时间:2021-07-01 10:21:17 帮助过:2人阅读
process.php文件如下:
$file = $_GET['file']; header("Content-type: octet/stream"); header("Content-disposition:attachment;filename=".$file.";"); header("Content-Length:".filesize($file)); readfile($file); exit;
html文件如下:
Image goes Here
希望本文所述对大家的php程序设计有所帮助。