用php把資料匯出excel
一:先獲取資料
<!--more-->
public function output($dataResult=array()){
$headTitle = date('YmdHis');
$title = date('YmdHis');
$headtitle= "{$headTitle} ";
$titlename = '';
$headtitle = "
ID
條碼號
商品組合
專案明細
病人
醫生姓名
醫生折扣
代理姓名
業務員
原價
實付
退款
日期
";
$filename = $title.".xls";
$this->excelData($dataResult,$titlename,$headtitle,$filename);
}
二:輸出
/*
*處理Excel匯出
*@param $datas array 設定表格資料
*@param $titlename string 設定head
*@param $title string 設定表頭
*/
private function excelData($datas,$titlename,$title,$filename){
$str = "rnrnrnrn";
$str .="
".$titlename."";
$str .= $title;
foreach ($datas as $key=> $rt )
{
$str .= "";
foreach ( $rt as $k => $v )
{
$str .= "'{$v} ";
}
$str .= " n";
}
$str .= "
";
header("Content-type:application/vnd.ms-excel");
//header( "Content-Type: application/vnd.ms-excel; name='excel'" );
//header( "Content-type: application/octet-stream" );
header( "Content-Disposition: attachment; filename=".$filename );
//header( "Cache-Control: must-revalidate, post-check=0, pre-check=0" );
header( "Pragma: no-cache" );
header( "Expires: 0" );
exit( $str );
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4686/viewspace-2799408/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- php匯出資料excelPHPExcel
- PHP 匯出 ExcelPHPExcel
- PHP匯出EXCELPHPExcel
- php 匯出excelPHPExcel
- php如何將資料匯出成excel表格呢?PHPExcel
- PHP匯出大量資料到excel表格PHPExcel
- php讀取excel檔案資料的匯入和匯出PHPExcel
- 把Excel表資料匯入到mysqlExcelMySql
- php 資料匯出PHP
- EasyPoi, Excel資料的匯入匯出Excel
- 資料匯出為excel表格Excel
- 大資料使用Excel匯出大資料Excel
- PHP 匯出 Excel 的優化PHPExcel優化
- php做EXCEL資料匯出匯入開發的一些小問題PHPExcel
- vue匯出excel資料表格功能VueExcel
- TP5.1excel匯入資料庫的程式碼?php excel如何匯入資料庫?Excel資料庫PHP
- SQL SERVER 和EXCEL的資料匯入匯出SQLServerExcel
- PHP匯出資料庫方法PHP資料庫
- 資料庫文件編寫,如何通過Navicat把表導成表格?資料庫快速匯出為excel表格資訊,excel匯出到word表格資料庫Excel
- vue2.0 匯出Excel表格資料VueExcel
- Excel表的一些資料應用(從txt文字匯出,匯入到Excel表)薦Excel
- ASP.NET EXCEL資料的匯出和匯入ASP.NETExcel
- 用Navicat把SQLServer資料匯入MySQLServerMySql
- C# asp.net 把GridView資料 匯出到 ExcelC#ASP.NETViewExcel
- 將資料庫中資料匯出為excel表格資料庫Excel
- 用SQL語句匯入excel資料SQLExcel
- PHP大資料xlswriter匯入匯出(最優資料化)PHP大資料
- 百萬級別資料Excel匯出優化Excel優化
- Dcat admin使用Laravel Excel匯出資料LaravelExcel
- node 抓取api資料匯出為excel表格APIExcel
- 頁面資料匯出為word或者excelExcel
- ORACLE資料表匯出成EXCEL格式(ODBC)OracleExcel
- 用Perl從oracle匯出百萬級資料到excelOracleExcel
- banq您好,請問如何把excel的資料匯入mysql.ExcelMySql
- 匯出excelExcel
- 原生PHP網頁匯出和匯入excel檔案例項PHP網頁Excel
- 使用PHP原生匯出Excel和CSV檔案PHPExcel
- php生成匯出Word、Excel、PowerPoint外掛PHPExcel