html部分 1 <a href="download.php?file=这里写你需要下载的文件地址">UCdownload</a> php部分 12345678 <?php $file = $_GET['file'];header ("Content-type: octet/stream"); //字节流,下载使用header ("Content-disposition: attachment; filename=".$file.";"); //下载的形式,这里是作为附件下载header("Content-Length: ".filesize($file)); readfile($file); exit; ?> 赞微海报分享
近期评论