我想CSV
使用php
. 我能够生成简单的CSV
文件,但我想为标题动态设置字体大小和字体颜色。我找到了一些图书馆,但那些都达不到标准。
这是我可以生成简单 CSV 文件的代码
$fp = fopen(FCPATH .'assets/' . $filename,'w');
$content = "";
foreach ($query_pairs->result() as $pair) {
$content .= '<th>' . @$users[$pair->uid1]->name . '</th>' . $sep . ' ' . @$users[$pair->uid2]->name . PHP_EOL;
}
fwrite($fp,$content);
fclose($fp);
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=".$filename);
header("Pragma: no-cache");
header("Expires: 0");
readfile(FCPATH .'assets/' . $filename);
请帮忙