gpt4 book ai didi

php - 为什么我在导出为 CSV 的 MySQL 中得到 HTML?

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

我知道以前有人问过这个问题,但我遇到了一个问题。

奇怪的是,当我执行此功能时,它包含您选择执行该功能的链接页面的html。

function exportCSV($table) {
$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_H-i",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;
exit;
}

有谁知道为什么它会在 csv 文件中包含 HTML? alt text http://i35.tinypic.com/16i9oxi.jpg

最佳答案

我的猜测是您有某种模板生成相同的 HTML 页眉和页脚,而不管请求的页面是什么。在调用 exportCSV 函数之前的某个时间,会生成 header 。

您没有显示输出的底部,但我敢打赌页脚也在那里,因为我怀疑流程控制将在函数退出后继续处理该代码。

关于php - 为什么我在导出为 CSV 的 MySQL 中得到 HTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/207019/

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