PHP實現(xiàn)導(dǎo)出帶樣式的Excel
工作中做導(dǎo)出的時候,需要導(dǎo)出自定義的表格或嫌棄導(dǎo)出的Excel格式太難看了。
需要設(shè)置顏色、字號大小、加粗、合并單元格等等。
效果圖:
PHP代碼:
/**
* 導(dǎo)出文件
* @return string
*/
public function export()
{
$file_name = "成績單-".date("Y-m-d H:i:s",time());
$file_suffix = "xls";
header("Content-Type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$file_name.$file_suffix");
//根據(jù)業(yè)務(wù),自己進(jìn)行模板賦值。
$this->display();
}
HTML代碼:
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=Content-Type content="text/html; charset=utf-8"> <meta name=ProgId content=Excel.Sheet> <meta name=Generator content="Microsoft Excel 11"> </head> <body> <table border=1 cellpadding=0 cellspacing=0 width="100%" > <tr> <td colspan="5" align="center"> <h2>成績單</h2> </td> </tr> <tr> <td style='width:54pt' align="center">編號</td> <td style='width:54pt' align="center">姓名</td> <td style='width:54pt' align="center">語文</td> <td style='width:54pt' align="center">數(shù)學(xué)</td> <td style='width:54pt' align="center">英語</td> </tr> <tr> <td align="center">1</td> <td style="background-color: #00CC00;" align="center">Jone</td> <td style="background-color: #00adee;" align="center">90</td> <td style="background-color: #00CC00;" align="center">85</td> <td style="background-color: #00adee;" align="center">100</td> </tr> <tr> <td align="center">2</td> <td style="background-color: #00CC00;" align="center">Tom</td> <td style="background-color: #00adee;" align="center">99</td> <td style="background-color: #00CC00;" align="center">85</td> <td style="background-color: #00adee;" align="center">80</td> </tr> </table> </body> </html>
我們再來看一個更方便的組件
在這里需要用到PEAR的兩個軟件包 Spreadsheet Excel Writer 和 OLE,如果沒有可以分別從 http://pear.php.net/package/Spreadsheet_Excel_Writer/ 和 http://pear.php.net/package/OLE/ 下載,解壓放在PEAR目錄下。
全部代碼如下:
<?php
include 'Writer.php';
/* *** 準(zhǔn)備導(dǎo)出的數(shù)據(jù) *** */
$head = 'One Week Schedule';
$data = array('Monday' => array( array('time' => '09:00', 'event' => '公司例會例會'),
array('time' => '14:00', 'event' => '部門例會')
),
'Tuesday' => array( array('time' => '09:30', 'event' => '和 Mr. Stinsen 早餐')),
'Wednesday' => array(array('time' => '12:10', 'event' => '市場中階報告'),
array('time' => '15:30', 'event' => '市場部戰(zhàn)略部署會議') ),
'Thursday' => array( array('time' => '', 'event' => '')),
'Friday' => array( array('time' => '16:00', 'event' => 'WoC Stock 研討會'),
array('time' => '17:00', 'event' => '飛往華爾街'),
array('time' => '21:00', 'event' => '會見克林頓'))
);
/* *** *** */
$workbook = new Spreadsheet_Excel_Writer();
$filename = date('YmdHis').'.xls';//csv
$workbook->send($filename); // 發(fā)送 Excel 文件名供下載
$workbook->setVersion( 8 );
$sheet = &$workbook->addWorksheet("Sheet1"); // 創(chuàng)建工作表
$sheet->setInputEncoding('utf-8'); // 字符集
$headFormat = &$workbook->addFormat(array('Size' => 14, 'Align' => 'center','Color' => 'white', 'FgColor' => 'brown', 'Bold'=>'1', 'Border' => '1'));//定義格式
$dayFormat = &$workbook->addFormat(array('Size' => 12, 'Align' => 'center', 'VAlign' => 'vcenter', 'FgColor' => 'green', 'Color' => 'white', 'Border' => '1'));//定義格式
$dataFormat = &$workbook->addFormat(array('Size' => 10, 'Align' => 'left', 'Border' => '1', 'Color' => 'black', 'FgColor'=> 'cyan'));//定義格式
$sheet->setColumn(0, 0, 20); // 設(shè)置寬度
$sheet->setColumn(1, 1, 15); // 設(shè)置寬度
$sheet->setColumn(2, 2, 30); // 設(shè)置寬度
$r = 0;
$sheet->write(0, $r, $head, $headFormat); // 表格標(biāo)題
$sheet->mergeCells(0, 0, 0, 2); // 跨列顯示
$r++; // 數(shù)據(jù)從第2行開始
foreach ($data as $day => $events){
$c = 0;
$sheet->write($r, $c, $day, $dayFormat);
if (!$events){
// 當(dāng)天沒有計劃
$r++;
} else {
$startRow = $r;
foreach ($events as $e){
$c = 1;
$sheet->write($r, $c++, $e['time'], $dataFormat); // 工作表寫入數(shù)據(jù)
$sheet->write($r, $c++, $e['event'], $dataFormat); // 工作表寫入數(shù)據(jù)
$r++;
}
// 合并 $day 單元格
$sheet->mergeCells($startRow, 0, $r - 1, 0);
}
}
$workbook->close(); // 完成下載
?>
- 利用phpExcel實現(xiàn)Excel數(shù)據(jù)的導(dǎo)入導(dǎo)出(全步驟詳細(xì)解析)
- php導(dǎo)入導(dǎo)出excel實例
- php中導(dǎo)出數(shù)據(jù)到excel時數(shù)字變?yōu)榭茖W(xué)計數(shù)的解決方法
- php將數(shù)據(jù)庫導(dǎo)出成excel的方法
- 使用PHPExcel實現(xiàn)數(shù)據(jù)批量導(dǎo)出為excel表格的方法(必看)
- php把數(shù)據(jù)表導(dǎo)出為Excel表的最簡單、最快的方法(不用插件)
- php導(dǎo)出excel格式數(shù)據(jù)問題
- php導(dǎo)出word文檔與excel電子表格的簡單示例代碼
- php原生導(dǎo)出excel文件的兩種方法(推薦)
- PHP將Excel導(dǎo)入數(shù)據(jù)庫及數(shù)據(jù)庫數(shù)據(jù)導(dǎo)出至Excel的方法
- php中通用的excel導(dǎo)出方法實例
- php 自定義函數(shù)實現(xiàn)將數(shù)據(jù) 以excel 表格形式導(dǎo)出示例
相關(guān)文章
php擴(kuò)展Zend?Framework框架——Validate擴(kuò)展
這篇文章介紹了php擴(kuò)展Zend?Framework框架,文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2008-01-01
PHP中file_exists使用中遇到的問題小結(jié)
PHP中explode函數(shù)和split函數(shù)的區(qū)別小結(jié)
IIS下PHP連接數(shù)據(jù)庫提示mysql undefined function mysql_connect()

