1. 程式人生 > >PHP下載伺服器檔案

PHP下載伺服器檔案

PHP從伺服器下載檔案

<?php
header("Content-type:text/html;charset=utf-8");
$file_name="聖誕狂歡.jpg";     //下載下來的檔名
//用以解決中文不能顯示出來的問題
$file_name=iconv("utf-8","gb2312",$file_name);
//檔案存放的資料夾路徑
$file_sub_path=$_SERVER['DOCUMENT_ROOT']."marcofly/phpstudy/down/down/";
$file_path=$file_sub_path.$file_name;
//首先要判斷給定的檔案存在與否
if(!file_exists($file_path)){ echo "沒有該檔案檔案"; return ; } $fp=fopen($file_path,"r"); $file_size=filesize($file_path); //下載檔案需要用到的頭 //Header("Content-type: text/csv"); Header("Content-type: application/octet-stream"); Header("Accept-Ranges: bytes"); Header("Accept-Length:".$file_size); Header("Content-Disposition: attachment; filename="
.$file_name); $buffer=1024; $file_count=0; //向瀏覽器返回資料 while(!feof($fp) && $file_count<$file_size){ $file_con=fread($fp,$buffer); $file_count+=$buffer; echo $file_con; } fclose($fp); exit; ?>

這裡寫圖片描述