标签:style blog color io os for 文件 sp div
经常可以看到点击一个文件,然后就可以下载。这个功能在php中实现可以通过下面的代码:
if(is_file($file)) { header("Content-Type: application/force-download"); header("Content-Disposition: attachment; filename=".basename($file)); readfile($file); }else { echo "文件不存在!"; }
标签:style blog color io os for 文件 sp div
原文地址:http://www.cnblogs.com/shuguang826/p/3997451.html