gpt4 book ai didi

php - 我的 PHP 代码出现在导出的 CSV 文档中

转载 作者:行者123 更新时间:2023-12-01 00:14:50 25 4
gpt4 key购买 nike

我现在开始熟悉将文档导出为 CSV 格式。但是我遇到了问题。

一旦我将 CSV header 引入代码中,任何后续 PHP 都会出现在导出的 CSV 文档中,而不是我想要的信息。

请协助我。

header("Content-type:text/octect-stream");
header("Content-Disposition:attachment;filename=".$_GET['docname'].".csv");

//the php for getting the info
mysql_connect("localhost","root", "");
mysql_select_db("mydb");

//CSV Processing
$sql_csv = mysql_query($query);
$tCount = mysql_num_fields($sql_csv);

//the first line is for the column names
for($i=0; $i<=($tCount-1); $i++)
{
if(mysql_field_name($tColumns,$i)!='')
{
echo ucfirst(mysql_field_name($tColumns,$i)).',\n';
}
}

while($row = mysql_fetch_row($sql_csv))
{
echo '"' . stripslashes(implode('","',$row)) . "\"\n";
}

exit;

最佳答案

在我看来你好像错过了开头 <?php标签。

关于php - 我的 PHP 代码出现在导出的 CSV 文档中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6496748/

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