0

データベースをダウンロード可能なファイルとして csv にエクスポートすることに成功しました。ただし、ダウンロードしたストレート .csv ファイルを作成する代わりに、サーバー上の「csv」というフォルダーに保存する必要があります。現在のエクスポートのコードは次のとおりです。サーバーに保存する際に助けが必要です。データを正しく保存していません。

    // output headers so that the file is downloaded rather than displayed
header('Content-Type: text/csv; charset=utf-8');
header('Content-Disposition: attachment; filename=data.csv');

// create a file pointer connected to the output stream
$output = fopen('php://output', 'w');

// output the column headings
fputcsv($output, array('tax_class_id','_product_websites'));

// fetch the data
mysql_connect('localhost:3036', 'x', 'x');
mysql_select_db('lato');
$rows = mysql_query('SELECT taxclass,productwebsite FROM product');

// loop over the rows, outputting them
while ($row = mysql_fetch_assoc($rows)) 
fputcsv($output, $row);

$filename = "data.csv"; // Trying to save file in server
file_put_contents("download/" . $filename, "$header\n$rows");
4

1 に答える 1