0

我有一个由 php 脚本使用带有空格的 str_pad() 创建的文本文件,我想下载相同的文件而不会丢失这些空格。当我使用 ftp 下载时,没有问题,文本文件中的所有空格都完好无损。但是当我使用这个下载脚本让用户可以下载时,它会给出垃圾字符而不是空格,并且数据会被打乱。如果用户有任何其他方式下载此文件,请提供帮助。

我要下载的 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');

?>

调用 download.php 的 HTML 文件

<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 文件输出由 php 脚本使用 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
4

1 回答 1

0

试试这个,看看会发生什么。为线

if ($file = fopen($file, 'r'))

改成

if (fopen($file, 'r'))

于 2012-05-11T05:23:15.407 回答