使用php在xls中保存Mysql数据

时间:2014-10-08 09:35:13

标签: php mysql xls

我想使用PHP以xls格式导出​​数据。但是,它们不是下载信息,而是显示在我的网页中。

//connection to database
//building of all information -> ($righe)

header("Content-type: application/vnd.ms-excel");
header("Content-disposition: esporta_utenti.xls");
print $righe;
exit();  

$righe是我的元组

1 个答案:

答案 0 :(得分:0)

header('Pragma: public');   // required
header('Expires: 0');       // no cache
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Last-Modified: '.gmdate ('D, d M Y H:i:s', filemtime ($file_name)).' GMT');
header('Cache-Control: private',false);
header('Content-Type: '.$mime); // file mime type
header('Content-Disposition: attachment; filename="'.basename($file_name).'"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: '.filesize($file_name));    // provide file size
header('Connection: close');
readfile($file_name);       // push it out
exit();

此代码最初发布于http://davidwalsh.name/php-force-download。并且可以参考代码的详细说明。