gpt4 book ai didi

php - 将数据输出为 Excel 文件

转载 作者:行者123 更新时间:2023-11-29 14:59:12 26 4
gpt4 key购买 nike

我正在尝试打开一个文件以导出为 Excel。我可以在 firebug 中看到数据,但没有选项可以向用户提供该文件。我在这里缺少什么?我已经包含了处理查询等的代码,并欢迎您的评论。非常感谢

header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-type: application/vnd.ms-excel; name='excel'");
header("Content-Disposition: attachment; filename=".$_GET['e'].".xls");
header("Pragma: no-cache");
header("Expires: 0");
$e = $_GET['e'];
// Load the common classes
require_once('../../../includes/common/KT_common.php');

// Load the tNG classes
require_once('../../../includes/tng/tNG.inc.php');

// Make a transaction dispatcher instance
$tNGs = new tNG_dispatcher("../../../");

// Make unified connection variable
$conn_conn= new KT_connection($conn, $database_conn);


switch($e) {


case "act":
mysql_select_db($database_conn, $conn);

$select = "SELECT service, activity, company, user, item, filebox, date FROM act";
$export = mysql_query($select);
$count = mysql_num_fields($export);
for ($i = 0; $i < $count; $i++) {
$header .= mysql_field_name($export, $i)."\t";
}
while($row = mysql_fetch_row($export)) {
$line = '';
foreach($row as $value) {
if ((!isset($value)) OR ($value == "")) {
$value = "\t";
} else {
$value = str_replace('"', '""', $value);
$value = '"' . $value . '"' . "\t";
}
$line .= $value;
}
$data .= trim($line)."\n";
}
$data = str_replace("\r", "", $data);
if ($data == "") {
$data = "\n(0) Records Found!\n";
}
print "$header\n$data";

break;

最佳答案

真正的问题是,您需要在 Content-Disposition header 中引用文件名,但您只需要一个 Content-Type header ,下面列出的其他一些缓存 header 应该有助于解决 IE 的潜在问题ssl(如果您使用它)

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
header ('Content-Type: application/vnd.ms-excel');
header ('Content-Disposition: attachment; filename="'.$_GET['e'].'.xls"');
header ('Content-Transfer-Encoding: binary');

需要注意的是:您实际上并没有创建 Excel xls 文件,只是一个带有 .xls 扩展名的制表符分隔值文件

关于php - 将数据输出为 Excel 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3741492/

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