经常可以看到点击一个文件,然后就可以下载。这个功能在php中实现可以通过下面的代码:
if(is_file($file)) { header("Content-Type: application/force-download"); header("Content-Disposition: attachment; filename=".basename($file)); readfile($file); }else { echo "文件不存在!"; }
时间: 2024-09-28 15:55:08