1. 程式人生 > >php下載文件

php下載文件

res 彈窗 use nload img ray class 頁面 accept



$arr = array(1,2,3,4);
$file_data = json_encode($res);
$download_filename = ‘123.json‘;
$http_user_agent = $_SERVER[‘HTTP_USER_AGENT‘];
header("Content-Type: application/octet-stream");
if (preg_match("/MSIE/", $http_user_agent) ) {
header(‘Content-Disposition: attachment; filename="‘.$download_filename.‘"‘);
} elseif (preg_match("/Firefox/", $http_user_agent)) {
header (‘Content-Disposition: attachment; filename*="utf8‘ . $download_filename . ‘"‘ );
} else {
header(‘Content-Disposition: attachment; filename="‘.$download_filename.‘"‘);
}
header("Accept-Length: ".strlen($file_data));
echo $file_data;

試了試,谷歌瀏覽器、火狐瀏覽器可直接下載;
IE瀏覽器如果出現如下彈窗:

技術分享圖片

解決方案:在ie菜單欄的【頁面】-->【編碼】,選擇【自動選擇】然後下載試試。

360瀏覽器也出現這種問題,待測。



php下載文件