gpt4 book ai didi

php - CSV 导出脚本仅在 IE 中生成错误?

转载 作者:行者123 更新时间:2023-11-29 01:01:03 25 4
gpt4 key购买 nike

我有一个 CSV 导出脚本 (enrdata_arch.php),它从现有数据库调用信息并将其导出为 CSV 格式。但是由于某些原因,该脚本仅在 Internet Explorer 中返回以下错误:

Microsoft Office Excel 无法访问文件“https://www.domain.com/admin/enrdata_arch.php” '.有几种可能的原因:

  • 文件名或路径不存在
  • 该文件正在被另一个程序使用
  • 您尝试保存的工作簿与当前打开的工作簿同名

**

原脚本贴如下:

**

<?php

$host = 'localhost';
$user = 'username';
$pass = 'password';
$db = 'db_name';
$table = 'table_name';
$archive = 'archive_name';
$file = 'export';

$link = mysql_connect($host, $user, $pass) or die("Can not connect.".mysql_error());
mysql_select_db($db) or die("Can not connect.");

$result = mysql_query("SHOW COLUMNS FROM ".$table."");
$i = 0;
if (mysql_num_rows($result) > 0) {
while ($row = mysql_fetch_assoc($result)) {
$csv_output .= $row['Field'].", ";
$i++;
}
}
$csv_output .= "\n";

$values = mysql_query("SELECT * FROM ".$table."");
while ($rowr = mysql_fetch_row($values)) {
for ($j=0;$j<$i;$j++) {
$csv_output .= '"'.$rowr[$j].'",';
}
$csv_output .= "\n";
}

$filename = $file."_".date("Y-m-d",time());
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: csv" . date("Y-m-d") . ".csv");
header( "Content-disposition: filename=".$filename.".csv");
print $csv_output;

//transfers old data to archive
$transfer = mysql_query('INSERT INTO '.$archive.' SELECT * FROM '.$table) or die(mysql_error());

//empties existing table
$query = mysql_query('TRUNCATE TABLE '.$table) or die(mysql_error());

mysql_close($link);
exit;
?>

似乎脚本仅在使用 IE 时才尝试保存和打开 PHP 文件。有什么想法吗?

最佳答案

SSL 的标题是 IE 的一个已知问题

我用

header ('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
header ('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); // always modified
header ('Cache-Control: cache, must-revalidate'); // HTTP/1.1
header ('Pragma: public'); // HTTP/1.0

它是'Pragma: public 那是 IE/ssl 的关键

CSV 文件的内容类型是

text/csv

text/plain

而不是

application/vnd.ms-excel

具体是 MS Excel .xls speardsheets

关于php - CSV 导出脚本仅在 IE 中生成错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3187648/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com