《PHP教程:PHP導(dǎo)出帶樣式的Excel示例代碼》要點(diǎn):
本文介紹了PHP教程:PHP導(dǎo)出帶樣式的Excel示例代碼,希望對(duì)您有用。如果有疑問,可以聯(lián)系我們。
前言PHP編程
在大家工作中做導(dǎo)出的時(shí)候,需要導(dǎo)出自定義的表格或嫌棄導(dǎo)出的Excel格式太難看了.這時(shí)候就需要設(shè)置顏色、字號(hào)大小、加粗、合并單元格等等.這篇文章通過實(shí)例告訴大家怎么做,下面來(lái)一起看看.PHP編程
先來(lái)看看效果圖:PHP編程
PHP編程
實(shí)例代碼PHP編程
PHP代碼: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代碼:PHP編程
<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>
以上就是本文的全部?jī)?nèi)容,本文通過實(shí)例介紹的非常詳細(xì),希望對(duì)大家的學(xué)習(xí)和工作能有所幫助,如果有疑問可以留言,謝謝大家對(duì)維易PHP的支持.PHP編程
轉(zhuǎn)載請(qǐng)注明本頁(yè)網(wǎng)址:
http://www.snjht.com/jiaocheng/3966.html