将数据从Mysql传输到excel

时间:2013-03-29 10:22:45

标签: php mysql excel report

我使用 php 创建了一个网站。在那个网站上,我想创建一个像thing这样的报告,它涉及将详细信息从一个表转移到可下载的excel表。有没有办法做这个工作?请帮我找到解决方案。

谢谢。

3 个答案:

答案 0 :(得分:1)

您可以从数据库中获取所有行并使用fputcsv函数将其设置为csv

header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Disposition: attachment;filename=export.csv");
header("Content-Transfer-Encoding: binary");

$csvHandler = fopen("php://output", 'w');
while ($row = mysql_fetch_array ($res))
{
    fputcsv($csvHandler, $row);
}

答案 1 :(得分:0)

您可以使用PHPExcel生成数据

和一个简单的文件下载功能:

function show_download($data, $name, $type = "unknown/unknown") {
header('Content-Type: ' . $type);
header('Expires: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Content-Disposition: attachment; filename="' . $name . '"');
header('Content-Length: ' . strlen($data));
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');

print $data;

exit();

}

答案 2 :(得分:0)

您可以创建一个导出CSV文件的脚本,如下所示:

header('Content-type: text/csv');
header("Content-Disposition: attachment; filename=clients_" . date("Ymd") . ".csv");

//Open PHP output stream
$fd = fopen('php://output', 'w');

$tab = array();

//get your results from your database
foreach ($results as $res)
   $tab[] = array($res->Client_Name, $res->Client_Email);

foreach ($tab as $val)
    fputcsv($fd, $val);

fclose($fd);