Posted in PHP onDecember 06, 2016
本文实例讲述了php简单实现文件或图片强制下载的方法。分享给大家供大家参考,具体如下:
//下载 function downregcaseAction() { $file="upload/regcase.jpg"; if(isfile($file)) { header("Content-Type: application/force-download"); header("Content-Disposition: attachment; filename=".basename(file)); readfile(file); exit; } else { echo "文件不存在!"; exit; } }
希望本文所述对大家PHP程序设计有所帮助。
php简单实现文件或图片强制下载的方法
- Author -
牛逼的霍啸林声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@