PHP下載檔案的兩種方法與程式碼。
分享PHP實作下載檔案的兩種方法。分享下,有用到的朋友看看哦。
方法一:
<?php /*** 下载文件* header函数**/header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename='.basename($filepath)); header('Content-Transfer-Encoding: binary'); header('Expires: 0′);header('Cache-Control: must-revalidate, post-check=0, pre-check=0′); header('Pragma: public'); header('Content-Length: ' . filesize($filepath)); readfile($file_path); ?>
以上程式碼用到了php header函數,可以參考以下如下的文章:
php header()函數的簡單範例
php header函數實作檔案下載的實例程式碼
php中header函數的用法舉例詳解
php header 使用詳解
php header函數檔案下載時直接提示已儲存的程式碼
php header函數實作文字檔下載的方法
php 檔案頭部(header)資訊詳解
php使用header傳送各種類型檔案下載的範例
了解php中header函數的用法。
方法二:
<?php//文件下载//readfile $fileinfo = pathinfo($filename); header('Content-type: application/x-'.$fileinfo['extension']); header('Content-Disposition: attachment; filename='.$fileinfo['basename']); header('Content-Length: '.filesize($filename)); readfile($thefile);exit(); ?>