五月综合缴情婷婷六月,色94色欧美sute亚洲线路二,日韩制服国产精品一区,色噜噜一区二区三区,香港三级午夜理伦三级三

您現(xiàn)在的位置: 365建站網(wǎng) > 365文章 > PHP實(shí)現(xiàn)導(dǎo)出帶樣式的Excel(自定義表格樣式)

PHP實(shí)現(xiàn)導(dǎo)出帶樣式的Excel(自定義表格樣式)

文章來(lái)源:365jz.com     點(diǎn)擊數(shù):801    更新時(shí)間:2017-08-11 09:42   參與評(píng)論

工作中做導(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' => '部門(mén)例會(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);   // 工作表寫(xiě)入數(shù)據(jù)
        $sheet->write($r, $c++, $e['event'], $dataFormat);   // 工作表寫(xiě)入數(shù)據(jù)
        $r++;
     }
     // 合并 $day 單元格
     $sheet->mergeCells($startRow, 0, $r - 1, 0);
   }
}
$workbook->close(); // 完成下載
 ?>

 

如對(duì)本文有疑問(wèn),請(qǐng)?zhí)峤坏浇涣髡搲?,廣大熱心網(wǎng)友會(huì)為你解答?。?點(diǎn)擊進(jìn)入論壇

發(fā)表評(píng)論 (801人查看0條評(píng)論)
請(qǐng)自覺(jué)遵守互聯(lián)網(wǎng)相關(guān)的政策法規(guī),嚴(yán)禁發(fā)布色情、暴力、反動(dòng)的言論。
昵稱:
最新評(píng)論
------分隔線----------------------------

其它欄目

· 建站教程
· 365學(xué)習(xí)

業(yè)務(wù)咨詢

· 技術(shù)支持
· 服務(wù)時(shí)間:9:00-18:00
365建站網(wǎng)二維碼

Powered by 365建站網(wǎng) RSS地圖 HTML地圖

copyright © 2013-2024 版權(quán)所有 鄂ICP備17013400號(hào)