在CodeIgniter 3中导出Excel工作表

f45qwnt8  于 2023-01-06  发布在  其他
关注(0)|答案(1)|浏览(168)

我正在尝试用Codeigniter 3,我的SQL和PHP 8.2上传Excel表。
请帮助我与图书馆和它的使用在这个任务。

jm81lzqq

jm81lzqq1#

如果要导出结果,最简单的方法是使用csv方法。

$filename="index_res.php";
header("Content-Description:File Transfer");
header("Content-Disposition:attachment;filename=$filename");
header("Content-Type:application/csv");
ob_clean();
$file=fopen("php://output","w");
//mysql result goes here
foreach($your_data as $data)
{
fputcsv($file,$data);
}
fclose($file);
exit;

相关问题