簡體   English   中英

將xls文件保存到目錄並在php中下載

[英]Save xls file to directory and download in php

我有一個php代碼,它從postgres數據庫中選擇一個查詢,並創建一個xls文件並下載該文件。 代碼如下:

    <?php

$xls_filename = 'filename.xls'; // Define Excel (.xls) file name

$Connect = pg_connect ("host=xxxx port=5432 dbname=xxxx user=xxx  password=xxx");

$sql = 'SELECT * FROM "tablename"';

$result = pg_query($sql);

header("Content-Type: application/xls");
header("Content-Disposition: attachment; filename=$xls_filename");
header("Pragma: no-cache");
header("Expires: 0");

// Define separator (defines columns in excel &amp; tabs in word)
$sep = "\t"; // tabbed character 

// Start of printing column names as names of fields
for ($i = 0; $i<pg_num_fields($result); $i++) {
    echo pg_field_name($result,$i) . "\t";
}

print("\n");
// End of printing column names

// Start while loop to get data
while($row = pg_fetch_row($result))
{
  $schema_insert = "";
  for($j=0; $j<pg_num_fields($result); $j++)
  {
    if(!isset($row[$j])) {
      $schema_insert .= "".$sep;
   }
    elseif ($row[$j] != "") {
      $schema_insert .= "$row[$j]".$sep;
    }
    else {
      $schema_insert .= "".$sep;
    }
  }
  $schema_insert = str_replace($sep."$", "", $schema_insert);
  $schema_insert = preg_replace("/\r\n|\n\r|\n|\r/", " ", $schema_insert);
  $schema_insert .= "\t";
  print(trim($schema_insert));
  print "\n";
  } 
  }

?>

我想壓縮創建的xls文件,而不是直接下載它。 如何在目錄中創建xls文件而不是下載文件。

問題是您的變量。當文件名有空間時,您必須使用如下引號:

header("Content-Type: application/xls");
header("Content-Disposition: attachment; filename='$xls_filename'");

您可以使用以下正常工作的代碼

            $fileNames = WWW_ROOT . 'uploads' . DS . 'export' . DS . 'DYNAMIC_FILE_NAME_'. $ANY_DYNAMIC_PART.'.xls';//Dynamic Path of the directory
            if (file_exists($fileNames)) {
                $file = $fileNames;
                header("Content-Type: application/force-download");
                header("Content-Type: application/octet-stream");
                header("Content-Type: application/download");
                header("Content-Disposition: attachment; filename=\"NEWFILENAME.xls\"");
                header("Content-Transfer-Encoding: binary");
                header("Pragma: no-cache");
                header("Expires: 0");
                readfile($fileNames);exit;
            }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM