我正在尝试在CSV文件中导出少量数据。虽然文件已成功写入但未下载而是由浏览器读取。 $csvarray
是数据数组,fputcsv2
的功能类似于PHP默认fputcsv
函数
$output = fopen("php://output",'w') or die("Can't open php://output");
rewind( $output );
foreach($csvarray as $product) {
fputcsv2($output, $product,',',' ');
}
header("Content-type: text/csv");
header('Content-Disposition: attachment; filename="export.csv"');
readfile ($output);
exit();
答案 0 :(得分:1)
最后问题得到解决,可能对某人有帮助,
当我在将数据数据转储到CSV文件之前生成数据数组时,我使用带有$print_r
标记的<pre> ... </pre>
打印数组。虽然我删除$print_r
但<pre> ... </pre>
标记仍然存在阻止文件下载。我删除此标记文件后立即下载。
答案 1 :(得分:0)
readfile()文档中的第一个示例可以帮助您:http://php.net/manual/en/function.readfile.php
示例#1使用readfile()强制下载
<?php
$file = 'monkey.gif';
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.basename($file).'"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
readfile($file);
exit;
}
?>