gpt4 book ai didi

php - 通过 PHP 导出为 CSV

转载 作者:IT老高 更新时间:2023-10-28 11:43:52 26 4
gpt4 key购买 nike

假设我有一个数据库....有没有办法可以通过 PHP 将数据库中的内容导出到 CSV 文件(和文本文件 [如果可能])?

最佳答案

我个人使用此函数从任何数组创建 CSV 内容。

function array2csv(array &$array)
{
if (count($array) == 0) {
return null;
}
ob_start();
$df = fopen("php://output", 'w');
fputcsv($df, array_keys(reset($array)));
foreach ($array as $row) {
fputcsv($df, $row);
}
fclose($df);
return ob_get_clean();
}

然后您可以让您的用户使用以下方式下载该文件:

function download_send_headers($filename) {
// disable caching
$now = gmdate("D, d M Y H:i:s");
header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate");
header("Last-Modified: {$now} GMT");

// force download
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");

// disposition / encoding on response body
header("Content-Disposition: attachment;filename={$filename}");
header("Content-Transfer-Encoding: binary");
}

使用示例:

download_send_headers("data_export_" . date("Y-m-d") . ".csv");
echo array2csv($array);
die();

关于php - 通过 PHP 导出为 CSV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4249432/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com