75

csv ファイルを作成したいのですが、コードを実行すると空白のページが返され、csv ファイルがありません。PHP 5 を使用しています。次のコードを使用します。

<?php
    $data = array ('aaa,bbb,ccc,dddd',
                   '123,456,789',
                   '"aaa","bbb"');

    $fp = fopen('data.csv', 'w');
    foreach($data as $line){
             $val = explode(",",$line);
             fputcsv($fp, $val);
    }
    fclose($fp);
?>

ありがとうございました!

4

3 に答える 3

136

に書き込んでいるため、空白ですfileoutput代わりにusingに書き込み、php://outputcsv であることを示すヘッダー情報も送信する必要があります。

header('Content-Type: text/csv');
header('Content-Disposition: attachment; filename="sample.csv"');
$data = array(
        'aaa,bbb,ccc,dddd',
        '123,456,789',
        '"aaa","bbb"'
);

$fp = fopen('php://output', 'wb');
foreach ( $data as $line ) {
    $val = explode(",", $line);
    fputcsv($fp, $val);
}
fclose($fp);
于 2013-03-19T14:02:55.507 に答える
73

@ババの答えは素晴らしいです。ただし、配列をパラメーターとして受け取るexplodeため、使用する必要はありませんfputcsv

たとえば、3 列 4 行のドキュメントがある場合は、より単純なバージョンを次に示します。

header('Content-Type: text/csv');
header('Content-Disposition: attachment; filename="sample.csv"');

$user_CSV[0] = array('first_name', 'last_name', 'age');

// very simple to increment with i++ if looping through a database result 
$user_CSV[1] = array('Quentin', 'Del Viento', 34);
$user_CSV[2] = array('Antoine', 'Del Torro', 55);
$user_CSV[3] = array('Arthur', 'Vincente', 15);

$fp = fopen('php://output', 'wb');
foreach ($user_CSV as $line) {
    // though CSV stands for "comma separated value"
    // in many countries (including France) separator is ";"
    fputcsv($fp, $line, ',');
}
fclose($fp);
于 2015-10-22T16:36:11.990 に答える
1

CSV ファイルを電子メールの添付ファイルとして特定のパスに保存することを考えている人がいる場合に備えて。次に、次のように実行できます

私は初心者のためだけにたくさんのコメントを追加したことを知っています:)

よくまとめられるように、例を追加しました。

$activeUsers = /** Query to get the active users */

/** Following is the Variable to store the Users data as 
    CSV string with newline character delimiter, 

    its good idea of check the delimiter based on operating system */

$userCSVData = "Name,Email,CreatedAt\n";

/** Looping the users and appending to my earlier csv data variable */
foreach ( $activeUsers as $user ) {
    $userCSVData .= $user->name. "," . $user->email. "," . $user->created_at."\n";
}
/** Here you can use with H:i:s too. But I really dont care of my old file  */
$todayDate  = date('Y-m-d');
/** Create Filname and Path to Store */
$fileName   = 'Active Users '.$todayDate.'.csv';
$filePath   = public_path('uploads/'.$fileName); //I am using laravel helper, in case if your not using laravel then just add absolute or relative path as per your requirements and path to store the file

/** Just in case if I run the script multiple time 
    I want to remove the old file and add new file.

    And before deleting the file from the location I am making sure it exists */
if(file_exists($filePath)){
    unlink($filePath);
}
$fp = fopen($filePath, 'w+');
fwrite($fp, $userCSVData); /** Once the data is written it will be saved in the path given */
fclose($fp);

/** Now you can send email with attachments from the $filePath */

注: 以下は、 memory_limittime limitを増やすのは非常に悪い考えですが、誰かが接続タイムアウトなどの問題に直面しているかどうかを確認するために追加しただけです。それに固執する前に、必ず代替手段を見つけてください。

上記のスクリプトの先頭に以下を追加する必要があります。

ini_set("memory_limit", "10056M");
set_time_limit(0);
ini_set('mysql.connect_timeout', '0');
ini_set('max_execution_time', '0');
于 2020-04-09T10:36:48.193 に答える