web-dev-qa-db-ja.com

fputcsvをデータに「エコー」させる方法

fputscv 関数に一時ファイルを作成してそのファイルにデータを保存し、echo file_get_contents()

29
Salman A

PHPドキュメントのウェブサイトでこれを見つけました。関数リファレンスの下の最初のコメント:

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

そして2番目のオプション:

$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 docsは、物事を理解しようとするときは常に最初に立ち寄るべきです。:-)

44
Seb Barre

PHPサイト)のコメントによる

<?php
$out = fopen('php://output', 'w');
fputcsv($out, array('this','is some', 'csv "stuff", you know.'));
fclose($out);
?>
16
powtac

元の質問者が「オンザフライでブラウザに書き込む」ことを望んでいたので、ファイル名とブラウザでファイルをダウンロードするように求めるダイアログを強制したい場合は、おそらく注目に値します(私の場合もそうではありませんでした)。 、fputcsvで何かを出力する前に、適切なヘッダーを設定する必要があります。

header('Content-Type: text/csv; charset=utf-8');
header('Content-Disposition: attachment; filename=myFile.csv');
2
Pere

CSVの作成は、実際にはそれほど難しいことではありません(CSVの解析はもう少し複雑です)。

2D配列を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";
}
0
Lee Kowalkowski