php 三種文件下載的實現

一、直接添加文件連接
<button>
<a href = "http://localhost/down.zip">
下載文件
</button>

點擊該按鈕下載: php


二、傳遞參數查找並跳轉到下載連接
傳遞參數:瀏覽器

<button>
<a href = "http://localhost?f='down'">
下載文件
</button>

查找文件並挑戰到下載連接:app

<?php函數

$down = $_GET['f']; //獲取文件參數
$filename = $down.'.zip'; //獲取文件名稱
$dir ="down/"; //相對於網站根目錄的下載目錄路徑
$down_host = $_SERVER['HTTP_HOST'].'/'; //當前域名網站


//判斷若是文件存在,則跳轉到下載路徑
if(file_exists(__DIR__.'/'.$dir.$filename)){
header('location:http://'.$down_host.$dir.$filename);
}else{
header('HTTP/1.1 404 Not Found');
}

結果:ip

文件存在域名


文件不存在 it

三、head() 和 fread()函數把文件直接輸出到瀏覽器
<?php
$file_name = "down";
$file_name = "down.zip"; //下載文件名
$file_dir = "./down/"; //下載文件存放目錄
//檢查文件是否存在
if (! file_exists ( $file_dir . $file_name )) {
header('HTTP/1.1 404 NOT FOUND');
} else {
//以只讀和二進制模式打開文件
$file = fopen ( $file_dir . $file_name, "rb" ); io

//告訴瀏覽器這是一個文件流格式的文件
Header ( "Content-type: application/octet-stream" );
//請求範圍的度量單位
Header ( "Accept-Ranges: bytes" );
//Content-Length是指定包含於請求或響應中數據的字節長度
Header ( "Accept-Length: " . filesize ( $file_dir . $file_name ) );
//用來告訴瀏覽器,文件是能夠當作附件被下載,下載後的文件名稱爲$file_name該變量的值。
Header ( "Content-Disposition: attachment; filename=" . $file_name ); stream

//讀取文件內容並直接輸出到瀏覽器 echo fread ( $file, filesize ( $file_dir . $file_name ) ); fclose ( $file ); exit (); } 結果:和第二個同樣

相關文章
相關標籤/搜索