這篇文章主要介紹了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中文網其他相關文章!