0
我有一個由php腳本使用str_pad()與空格創建的文本文件,我想下載相同的文件而不會丟失這些空格。當我使用ftp下載時,沒有問題,文本文件中的所有空格都是完整的。 但是,當我使用此下載腳本以便用戶可以下載時,它會給出垃圾字符而不是空格,並且數據被加密。如果用戶有任何其他下載這個文件的方式,請幫助。PHP腳本強制下載文本文件
我的PHP文件下載 - 的download.php:
<?php
function output_file($file, $name, $mime_type='')
{
if(!is_readable($file)) die('File not found or inaccessible!');
$size = filesize($file);
$name = rawurldecode($name);
$known_mime_types=array(
"txt" => "text/plain",
"html" => "text/html",
"php" => "text/plain"
);
if($mime_type==''){
$file_extension = strtolower(substr(strrchr($file,"."),1));
if(array_key_exists($file_extension, $known_mime_types)){
$mime_type=$known_mime_types[$file_extension];
} else {
$mime_type="application/force-download";
};
};
@ob_end_clean();
if(isset($_SERVER['HTTP_RANGE']))
{
list($a, $range) = explode("=",$_SERVER['HTTP_RANGE'],2);
list($range) = explode(",",$range,2);
list($range, $range_end) = explode("-", $range);
$range=intval($range);
if(!$range_end) {
$range_end=$size-1;
} else {
$range_end=intval($range_end);
}
$new_length = $range_end-$range+1;
header("HTTP/1.1 206 Partial Content");
header("Content-Length: $new_length");
header("Content-Range: bytes $range-$range_end/$size");
} else {
$new_length=$size;
header("Content-Length: ".$size);
}
$chunksize = 1*(1024*1024);
$bytes_send = 0;
if ($file = fopen($file, 'r'))
{
if(isset($_SERVER['HTTP_RANGE']))
fseek($file, $range);
while(!feof($file) &&
(!connection_aborted()) &&
($bytes_send<$new_length)
)
{
$buffer = fread($file, $chunksize);
print($buffer); //echo($buffer);
flush();
$bytes_send += strlen($buffer);
}
fclose($file);
} else
die('Error - can not open file.');
die();
}
set_time_limit(0);
$file_path=$_REQUEST['filename'];
output_file($file_path, ''.$_REQUEST['filename'].'', 'text/plain');
?>
HTML文件,該文件調用的download.php這是由一個PHP腳本創建
<html>
<head>
<title>Downloading Text file</title>
</head><body>
<br>
<br>
<a href='download.php?filename=Text1.txt'>Download print file </a><br>
<br>
<br>
</body>
</html>
我原來Text1.txt文件輸出使用str_pad():
3M India Ltd 78788
No.2, Abbayappa Layout, 4th Main, NS Palaya,
Bannerghatta Road, Bangalore 560 076 11/05/2012
10:10:57
500 322
AAACB5984DXM001 29400127541
KA-01-N-2345 29400127541
作出上述更改後,沒有任何區別,是否有任何其他解決方案。 – user1114409
對不起,這是文本文件的輸出:
警告:FEOF():提供的參數不是在/home/public_html/svga/datagrid/examples/download.php一個有效流資源上線 < 警告:feof():supp – user1114409
嘗試使用'echo file_get_contents($ file)進行調試;退出;',把這個代碼放在函數的開頭,並檢查結果,如果沒有問題,則繼續執行該函數。 – adydy