我正在通过PHP生成一个临时文件,并强制使用以下代码下载它:
$liste = "this is a sample text to be displayed in the file"
$filename = "temp_code.txt";
header ("Content-Type: application/octet-stream");
header('Content-Disposition: attachment; filename="'.basename($filename).'"' );
echo $liste;
这里的问题是第一行是空白行,输出从第二行开始。 这是此脚本的输出:
1 .
2 . this is a sample text to be displayed in the file
我需要做的是避免产生第一行。
答案 0 :(得分:1)
更好的方法是使用这样的数组。
$foo = array();
while($a = mysql...)
{
$foo[] = $a['key'];
}
//your headers
echo implode(PHP_EOL,$foo);