PHPでダウンロード可能な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('id', 'role_id', 'parent_id'));
$list = RoleQuery::create()->find();
$list = $list->toArray();
$list = array_values($list);
// loop over the rows, outputting them
foreach($list as $fields){
fputcsv($output, $fields);
}
テストのために、データベースのロールを出力しています。問題は、それらがすべて次のように 1 つの列にあることです。
id、role_id、およびparent_idが異なる列にあることを確認するにはどうすればよいですか?