中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php中ie下載文件名亂碼的解決方法

發布時間:2020-10-24 14:31:01 來源:億速云 閱讀:211 作者:小新 欄目:編程語言

小編給大家分享一下php中ie下載文件名亂碼的解決方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

php ie下載文件名亂碼的解決辦法:1、通過header方法解決亂碼;2、通過“function remote_filesize($uri,$user='',$pw='') {...}”等方法解決亂碼。

php文件下載IE文件名亂碼問題

一直用chrome瀏覽器,沒發現問題。今天用ie6,發現文件下載時文件名亂碼,ie下迅雷下載文件名也是亂碼。網上查了下說在ie下需要使用urlencode編碼一下,我試了下

header('Content-Disposition: attachment; filename='. rawurlencode($file_name);結果用ie下載還是亂碼。php文件本身是gbk/gb2312編碼,于是我先將$file_name轉換成utf-8編碼再進行urlencode

header('Content-Disposition: attachment; filename='. rawurlencode(iconv("GBK","UTF-8",$file_name)));這樣使用ie下載就沒問題了,難道urlencode只能對utf-8進行轉義編碼?

還有就是獲取遠程文件的大小問題,php中的filesize函數只能對本地文件進行處理,處理遠程文件會失敗并發出一條警告,并且在windows平臺傳入的參數必須是gbk/gb2312編碼,使用utf-8編碼將無法訪問系統中的資源。

在網上找了四種獲取遠程文件大小的方法,多謝前輩們的分享,記錄一下:

方法一:header

<?php get_headers($url,true); //返回結果 Array ( [0] => HTTP/1.1 200 OK [Date] => Sat, 29 May 2004 12:28:14 GMT [Server] => Apache/1.3.27 (Unix) (Red-Hat/Linux) [Last-Modified] => Wed, 08 Jan 2003 23:11:55 GMT [ETag] => "3f80f-1b6-3e1cb03b" [Accept-Ranges] => bytes [Content-Length] => 438 [Connection] => close [Content-Type] => text/html ) ?>

這里可以根據Content-Length直接獲取大小了。

方法二:curl

function remote_filesize($uri,$user='',$pw='') { // start output buffering ob_start(); // initialize curl with given uri $ch = curl_init($uri); // make sure we get the header curl_setopt($ch, CURLOPT_HEADER, 1); // make it a http HEAD request curl_setopt($ch, CURLOPT_NOBODY, 1); // if auth is needed, do it here if (!emptyempty($user) && !emptyempty($pw)) { $headers = array('Authorization: Basic ' . base64_encode($user.':'.$pw)); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); } $okay = curl_exec($ch); curl_close($ch); // get the output buffer $head = ob_get_contents(); // clean the output buffer and return to previous // buffer settings ob_end_clean(); echo '<br>head-->'.$head.'<----end <br>'; // gets you the numeric value from the Content-Length // field in the http header $regex = '/Content-Length:\s([0-9].+?)\s/'; $count = preg_match($regex, $head, $matches); // if there was a Content-Length field, its value // will now be in $matches[1] if (isset($matches[1])) { $size = $matches[1]; } else { $size = 'unknown'; } //$last=round($size/(1024*1024),3); //return $last.' MB'; return $size; } 方法三:fsock
function getFileSize($url) { $url = parse_url($url); if($fp = @fsockopen($url['host'],emptyempty($url['port'])?80:$url['port'],$error)) { fputs($fp,"GET ".(emptyempty($url['path'])?'/':$url['path'])." HTTP/1.1\r\n"); fputs($fp,"Host:$url[host]\r\n\r\n"); while(!feof($fp)) { $tmp = fgets($fp); if(trim($tmp) == '') { break; } elseif(preg_match('/Content-Length:(.*)/si',$tmp,$arr)) { return trim($arr[1]); } } return null; } else { return null; } } 方法四:file_get_contents
$fCont = file_get_contents("http://www.cnmiss.cn/"); echo strlen($fCont)/1024;

看完了這篇文章,相信你對php中ie下載文件名亂碼的解決方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

松潘县| 汉中市| 汤阴县| 新邵县| 高碑店市| 珲春市| 法库县| 西和县| 容城县| 克拉玛依市| 天全县| 栾川县| 明光市| 桐梓县| 丰城市| 客服| 桐城市| 广饶县| 普宁市| 万源市| 巴里| 方山县| 芦溪县| 麻江县| 游戏| 罗城| 平安县| 邻水| 镇康县| 荥阳市| 博爱县| 新余市| 阜城县| 色达县| 土默特右旗| 湖州市| 古交市| 德阳市| 张家口市| 临夏县| 沈阳市|