程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP基礎知識 >> PHP實現文件下載代碼分享

PHP實現文件下載代碼分享

編輯:PHP基礎知識
 

<?php
$file = './中文.rar';
//EFIXME 有空格的時候basename只能獲取空格後半部分('/tmp/中文的 文檔.rar'獲得的是'文檔.rar','中文.rar'獲得的是'.rar')
$filename = basename($file);
header('Content-type: application/octet-stream');
// 處理中文文件名
$ua = $_SERVER['HTTP_USER_AGENT'];
$encoded_filename = urlencode($filename);
$encoded_filename = str_replace('+', '%20', $encoded_filename);
if (preg_match('/MSIE/', $ua)) {
header('Content-Disposition: attachment; filename="' . $encoded_filename . '"');
} else if (preg_match('/Firefox/', $ua)) {
header("Content-Disposition: attachment; filename*=\"utf8''" . $filename . '"');
} else {
header('Content-Disposition: attachment; filename="' . $filename . '"');
}
header("Content-Length: ". filesize($file));
//readfile($file);
// 只能在Apache中使用,且需要開啟mod_xsendfile
header("X-Sendfile: {$file}");

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved