美文网首页
[PHP文件上传下载]⑦--下载文件

[PHP文件上传下载]⑦--下载文件

作者: 子木同 | 来源:发表于2017-09-19 17:50 被阅读26次

download.php

<html>
<head></head>
<body>
<a href="1.rar">下载1.rar</a><br/>
<a href="yun.jpeg">下载图片</a><br>
<a href="doDownload.php?filename=yun.jpeg">通过程序下载jpeg</a><br/>
<a href="doDownload.php?filename=../uploads/yun.jpeg">下载yun</a>
</body>
</html>

doDownload.php

<?php
$filename = $_GET['filename'];
header('content-disposition:attachment;filename=' . basename($filename));
header('content-length:' . filesize($filename));
readfile($filename);
?>
Paste_Image.png

相关文章

网友评论

      本文标题:[PHP文件上传下载]⑦--下载文件

      本文链接:https://www.haomeiwen.com/subject/zffgsxtx.html