33

我需要一种方法让fputscv函数即时将数据写入浏览器,而不是创建一个临时文件,将数据保存到该文件中并执行echo file_get_contents().

4

4 回答 4

47

在 PHP 文档网站上找到了这个,首先在函数参考下评论:

function outputCSV($data) {
  $outstream = fopen("php://output", 'w');
  function __outputCSV(&$vals, $key, $filehandler) {
    fputcsv($filehandler, $vals, ';', '"');
  }
  array_walk($data, '__outputCSV', $outstream);
  fclose($outstream);
}

第二种选择:

$csv = fopen('php://temp/maxmemory:'. (5*1024*1024), 'r+');
fputcsv($csv, array('blah','blah'));
rewind($csv);

// put it all in a variable
$output = stream_get_contents($csv);

希望这可以帮助!

顺便说一句,PHP 文档应该始终是您尝试解决问题的第一站。:-)

于 2011-01-14T15:34:54.103 回答
25

通过 PHP 网站上的评论

<?php
$out = fopen('php://output', 'w');
fputcsv($out, array('this','is some', 'csv "stuff", you know.'));
fclose($out);
?>
于 2011-01-14T15:37:11.487 回答
7

由于最初的提问者想要“即时写入浏览器”,也许值得注意(就像我的情况,没有人提到它)如果你想强制一个文件名和一个对话框,要求在浏览器中下载文件,您必须在输出任何内容之前设置正确的标题fputcsv

header('Content-Type: text/csv; charset=utf-8');
header('Content-Disposition: attachment; filename=myFile.csv');
于 2015-05-06T10:10:43.967 回答
1

生成 CSV 实际上并不是那么困难(解析 CSV 有点复杂)。

将二维数组编写为 CSV 的示例代码:

$array = [
    [1,2,3],
    [4,5,6],
    [7,8,9]
];

// If this CSV is a HTTP response you will need to set the right content type
header("Content-Type: text/csv"); 

// If you need to force download or set a filename (you can also do this with 
// the download attribute in HTML5 instead)
header('Content-Disposition: attachment; filename="example.csv"')

// Column heading row, if required.
echo "Column heading 1,Column heading 2,Column heading 3\n"; 

foreach ($array as $row) {
    $row = array_map(function($cell) {
        // Cells containing a quote, a comma or a new line will need to be 
        // contained in double quotes.
        if (preg_match('/["\n,]/', $cell)) {
            // double quotes within cells need to be escaped.
            return '"' . preg_replace('/"/', '""', $cell) . '"';
        }

        return $cell;
    }, $row);

    echo implode(',', $row) . "\n";
}
于 2019-02-09T22:36:15.090 回答