为了账号安全,请及时绑定邮箱和手机立即绑定

通过PHP导出到CSV

通过PHP导出到CSV

PHP
白衣非少年 2019-06-25 13:46:44
通过PHP导出到CSV假设我有数据库.。有什么方法可以通过PHP将数据库中的内容导出到CSV文件(以及文本文件[如果可能的话])?
查看完整描述

3 回答

?
凤凰求蛊

TA贡献1825条经验 获得超4个赞

我个人使用这个函数从任何数组创建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();


查看完整回答
反对 回复 2019-06-25
?
当年话下

TA贡献1890条经验 获得超9个赞

可以使用此命令导出日期。

<?php

$list = array (
    array('aaa', 'bbb', 'ccc', 'dddd'),
    array('123', '456', '789'),
    array('"aaa"', '"bbb"'));$fp = fopen('file.csv', 'w');foreach ($list as $fields) {
    fputcsv($fp, $fields);}fclose($fp);?>

首先,必须将数据从MySQL服务器加载到数组中。


查看完整回答
反对 回复 2019-06-25
?
缥缈止盈

TA贡献2041条经验 获得超4个赞

为了记录在案,连接比连接速度快(我是认真的)。fputcsv甚至implode文件大小更小:

// The data from Eternal Oblivion is an object, always$values = (array) fetchDataFromEternalOblivion($userId, $limit = 1000);
// ----- fputcsv (slow)// The code of @Alain Tiemblo is the best implementationob_start();$csv = fopen("php://output", 'w');
fputcsv($csv, array_keys(reset($values)));foreach ($values as $row) {
    fputcsv($csv, $row);}fclose($csv);return ob_get_clean();// ----- implode (slow, but file size is smaller)
    $csv = implode(",", array_keys(reset($values))) . PHP_EOL;foreach ($values as $row) {
    $csv .= '"' . implode('","', $row) . '"' . PHP_EOL;}return $csv;// ----- concatenation (fast, file size is smaller)
    // We can use one implode for the headers =D$csv = implode(",", array_keys(reset($values))) . PHP_EOL;$i = 1;
    // This is less flexible, but we have more control over the formattingforeach ($values as $row) {
    $csv .= '"' . $row['id'] . '",';
    $csv .= '"' . $row['name'] . '",';
    $csv .= '"' . date('d-m-Y', strtotime($row['date'])) . '",';
    $csv .= '"' . ($row['pet_name'] ?: '-' ) . '",';
    $csv .= PHP_EOL;}return $csv;

这是从10行到数千行的几个报告优化的结论。这三个示例在1000行下工作良好,但当数据更大时就失败了。


查看完整回答
反对 回复 2019-06-25
  • 3 回答
  • 0 关注
  • 466 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信