1 |
<?php |
2 |
header( "Content-Type:
application/force-download" ); |
3 |
header( "Content-Disposition:
attachment; filename=ins.jpg" ); |
4 |
readfile( "imgs/test_Zoom.jpg" ); |
5 |
?> |
第一行代码是强制下载;
第二行代码是给下载的内容指定一个名字;
第三行代码是把下载的内容读进文件中。