我正在用 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);
}
只是为了测试,我正在输出我的数据库中的角色。问题是它们都在这样的一列中:
如何确保 id、role_id 和 parent_id 在不同的列中?