91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

PHP如何使用header方式下載文件?

發布時間:2020-05-20 14:23:37 來源:億速云 閱讀:555 作者:鴿子 欄目:編程語言

PHP通過header方式下載文件時,不能使用ajax方式提交,該方式會將header結果返回給ajax

(1) 在下載大文件的時候,通常需要很長的時間,PHP有默認執行時間,一般是30s,超過該時間,就是下載失敗,所以需要設置一下超時時間`set_time_limit(0);`

該語句說明函數執行不設置超時時間。另一個需要設置的就是內存使用,設置`ini_set('memory_limit', '128M');`即可。

(2) 對于下載文件的文件名稱,下載下來可能會出現亂碼,當然,這種情況出現在文件名包含中文或者特殊字符的情況下,此時,可以設置一下header:

$contentDispositionField = 'Content-Disposition: attachment; '
                    . sprintf('filename="%s"; ', basename($file))      
                    . sprintf("filename*=utf-8''%s", basename($file));   
header($contentDispositionField);

(3)下載buffer大小,這個可以根據服務器帶寬設置,一般4096就可以

(4)下載時,可以在echo buffer之后設置sleep(1)讓程序休眠

(5)在設置header之前,ob_clean()一下,清除緩存區內容

1.強制下載本地文件

function forceDownload($file = '')
{
    set_time_limit(0);     //超時設置
    ini_set('memory_limit', '128M');    //內存大小設置
    ob_clean();
    header("Pragma: public");
    header("Expires: 0");
    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    header("Content-Type: application/force-download");
    header("Content-Type: application/octet-stream");
    header("Content-Type: application/download");
    $contentDispositionField = 'Content-Disposition: attachment; '    
        . sprintf('filename="%s"; ', basename($file))
        . sprintf("filename*=utf-8''%s", basename($file));    //處理文件名稱
    header($contentDispositionField);
    header("Content-Transfer-Encoding: binary");
    header("Content-Length: " . filesize($file));
    $read_buffer = 4096;                                    //設置buffer大小
	$handle = fopen($file, 'rb');
	//總的緩沖的字節數
	$sum_buffer = 0;
	//只要沒到文件尾,就一直讀取
	while (!feof($handle) && $sum_buffer < filesize($file)) {
		echo fread($handle, $read_buffer);
		$sum_buffer += $read_buffer;
	}
	//關閉句柄
	fclose($handle);
	exit;
}

2.限制下載速率

/**
 * @param  $localFile 本地文件
 * @param  $saveFileName  另存文件名
 * @param  $downloadRate  下載速率
 */
function download_with_limitRate($localFile = '',$saveFileName = '',$downloadRate = 20.5)
{
	if(file_exists($localFile) && is_file($localFile)) {
		ob_clean();
		header('Cache-control: private');
		header('Content-Type: application/octet-stream'); 
		header('Content-Length: '.filesize($localFile));
		header('Content-Disposition: filename='.$saveFileName);
		
		flush();    
		// 打開文件流
		$file = fopen($localFile, "r");    
		while(!feof($file)) {
			// 發送當前塊到瀏覽器
			print fread($file, round($downloadRate * 1024));    
			// 輸出到瀏覽器
			flush();
			// sleep one second
			sleep(1);    
		}    
		//關閉文件流
		fclose($file);}
	else {
		die('Error: The file '.$localFile.' does not exist!');
	}
}

3.下載網絡文件

function downloadFromUrl($url = '', $savePath = 'uploads/')
{
    set_time_limit(0);
    ini_set('max_execution_time', '0');
    $pi = pathinfo($url);
    $ext = $pi['extension'];
    $name = $pi['filename'];

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
    curl_setopt($ch, CURLOPT_AUTOREFERER, true);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $opt = curl_exec($ch);
    curl_close($ch);
    $saveFile = $name . '.' . $ext;
    if (preg_match("/[^0-9a-z._-]/i", $saveFile)) {
        $saveFile = $savePath . '/' . md5(microtime(true)) . '.' . $ext;
    } else {
        $saveFile = $savePath . '/' . $name . '.' . $ext;
    }

    $handle = fopen($saveFile, 'wb');
    if(fwrite($handle, $opt)){
        echo 'download success';
    }
    fclose($handle);
    exit;
}

4.獲取網絡文件大小

function remote_filesize($url, $user = "", $pw = "")
{
    ob_start();
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_HEADER, 1);
    curl_setopt($ch, CURLOPT_NOBODY, 1);
    if (!empty($user) && !empty($pw)) {
        $headers = array('Authorization: Basic ' . base64_encode("$user:$pw"));
        curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    }
    curl_exec($ch);
    curl_close($ch);
    $head = ob_get_contents();
    ob_end_clean();
    $regex = '/Content-Length:\s([0-9].+?)\s/';
    preg_match($regex, $head, $matches);
    return isset($matches[1]) ? $matches[1] : "unknown";
}

總結:

1.通過header方式下載一定不能通過ajax方式請求

2.設置超時時間

3.設置memory_limit

4.在header之前ob_clean()

5.設置buffer大小

6.可以設置sleep()減輕內存壓力

以上就是PHP通過header方式下載文件教程的詳細內容,更多請關注億速云其它相關文章!

向AI問一下細節

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

AI

易门县| 成安县| 扎兰屯市| 巴东县| 勐海县| 通道| 威信县| 凯里市| 西充县| 娄底市| 外汇| 唐河县| 万全县| 汝州市| 中宁县| 武城县| 腾冲县| 望奎县| 建水县| 黄大仙区| 如皋市| 老河口市| 昭通市| 简阳市| 思茅市| 五指山市| 金门县| 兴安县| 神农架林区| 平远县| 商河县| 镇江市| 本溪市| 津南区| 瓮安县| 谷城县| 山东| 扶绥县| 佛教| 开平市| 石嘴山市|