PHP實(shí)現(xiàn)導(dǎo)出帶樣式的Excel
工作中做導(dǎo)出的時(shí)候,需要導(dǎo)出自定義的表格或嫌棄導(dǎo)出的Excel格式太難看了。
需要設(shè)置顏色、字號(hào)大小、加粗、合并單元格等等。
效果圖:
PHP代碼:
/** * 導(dǎo)出文件 * @return string */ public function export() { $file_name = "成績(jī)單-".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>成績(jī)單</h2> </td> </tr> <tr> <td style='width:54pt' align="center">編號(hào)</td> <td style='width:54pt' align="center">姓名</td> <td style='width:54pt' align="center">語(yǔ)文</td> <td style='width:54pt' align="center">數(shù)學(xué)</td> <td style='width:54pt' align="center">英語(yǔ)</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>
我們?cè)賮?lái)看一個(gè)更方便的組件
在這里需要用到PEAR的兩個(gè)軟件包 Spreadsheet Excel Writer 和 OLE,如果沒(méi)有可以分別從 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' => '公司例會(huì)例會(huì)'), array('time' => '14:00', 'event' => '部門例會(huì)') ), 'Tuesday' => array( array('time' => '09:30', 'event' => '和 Mr. Stinsen 早餐')), 'Wednesday' => array(array('time' => '12:10', 'event' => '市場(chǎng)中階報(bào)告'), array('time' => '15:30', 'event' => '市場(chǎng)部戰(zhàn)略部署會(huì)議') ), 'Thursday' => array( array('time' => '', 'event' => '')), 'Friday' => array( array('time' => '16:00', 'event' => 'WoC Stock 研討會(huì)'), array('time' => '17:00', 'event' => '飛往華爾街'), array('time' => '21:00', 'event' => '會(huì)見(jiàn)克林頓')) ); /* *** *** */ $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行開(kāi)始 foreach ($data as $day => $events){ $c = 0; $sheet->write($r, $c, $day, $dayFormat); if (!$events){ // 當(dāng)天沒(méi)有計(jì)劃 $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實(shí)現(xiàn)Excel數(shù)據(jù)的導(dǎo)入導(dǎo)出(全步驟詳細(xì)解析)
- php導(dǎo)入導(dǎo)出excel實(shí)例
- php中導(dǎo)出數(shù)據(jù)到excel時(shí)數(shù)字變?yōu)榭茖W(xué)計(jì)數(shù)的解決方法
- php將數(shù)據(jù)庫(kù)導(dǎo)出成excel的方法
- 使用PHPExcel實(shí)現(xiàn)數(shù)據(jù)批量導(dǎo)出為excel表格的方法(必看)
- php把數(shù)據(jù)表導(dǎo)出為Excel表的最簡(jiǎn)單、最快的方法(不用插件)
- php導(dǎo)出excel格式數(shù)據(jù)問(wèn)題
- php導(dǎo)出word文檔與excel電子表格的簡(jiǎn)單示例代碼
- php原生導(dǎo)出excel文件的兩種方法(推薦)
- PHP將Excel導(dǎo)入數(shù)據(jù)庫(kù)及數(shù)據(jù)庫(kù)數(shù)據(jù)導(dǎo)出至Excel的方法
- php中通用的excel導(dǎo)出方法實(shí)例
- php 自定義函數(shù)實(shí)現(xiàn)將數(shù)據(jù) 以excel 表格形式導(dǎo)出示例
相關(guān)文章
PHP跳轉(zhuǎn)頁(yè)面的幾種實(shí)現(xiàn)方法詳解
本篇文章是對(duì)PHP跳轉(zhuǎn)頁(yè)面的幾種實(shí)現(xiàn)方法進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下2013-06-06使用GDB調(diào)試PHP代碼,解決PHP代碼死循環(huán)問(wèn)題
這篇文章主要介紹了使用GDB調(diào)試PHP代碼,解決PHP代碼死循環(huán)問(wèn)題,需要的朋友可以參考下2015-03-03php實(shí)現(xiàn)簡(jiǎn)單加入購(gòu)物車功能
本文主要介紹了php實(shí)現(xiàn)簡(jiǎn)單加入購(gòu)物車功能的方法,具有很好的參考價(jià)值。下面跟著小編一起來(lái)看下吧2017-03-03php 時(shí)間計(jì)算問(wèn)題小結(jié)
最近在學(xué)PHP,一位朋友問(wèn)到時(shí)間的計(jì)算,此時(shí)我想到了delphi和mssql的計(jì)算函數(shù),它們用起來(lái)都很方便,但查查php手冊(cè)并未發(fā)現(xiàn)類似的時(shí)間計(jì)算函數(shù),通過(guò)網(wǎng)文的啟發(fā)和自已的測(cè)試,還是找到簡(jiǎn)單的方法來(lái)實(shí)現(xiàn)2009-01-01mac下Apache + MySql + PHP搭建網(wǎng)站開(kāi)發(fā)環(huán)境
最近接了個(gè)小活,做一個(gè)使用PHP語(yǔ)言和MySql數(shù)據(jù)庫(kù)的動(dòng)態(tài)網(wǎng)站。之前做過(guò)類型的網(wǎng)站,是在windows系統(tǒng)下做的,開(kāi)發(fā)環(huán)境使用的是 AppServ 的PHP開(kāi)發(fā)套件。現(xiàn)在有了我的大MAC,所以找了MAC系統(tǒng)下PHP環(huán)境的開(kāi)發(fā)套件。2014-06-06