首页 > 代码库 > php输出(下载)文件

php输出(下载)文件

经常可以看到点击一个文件,然后就可以下载。这个功能在php中实现可以通过下面的代码:

if(is_file($file)){    header("Content-Type: application/force-download");    header("Content-Disposition: attachment; filename=".basename($file));    readfile($file);}else {    echo "文件不存在!";}

 

php输出(下载)文件