PHP導出word文件,簡單拓展可導出其餘文本類文件php
1 /** 2 * PHP 導出簡單文本內容(word txt等) 3 * @param $content mixed 導出內容 (文本string / html代碼) 4 * @param $filename string 需保存文件名 5 * @param string $extension 文件類型 (doc docx txt xml) 6 */ 7 function export_html_to_word($content, $filename, $extension = 'doc') 8 { 9 ob_start(); 10 11 $_export_content = ''; 12 if ($extension == 'doc' || $extension == 'docx') { 13 $_export_content .= '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40">'; 14 } 15 16 $_export_content .= $content; 17 18 if ($extension == 'doc' || $extension == 'docx') $_export_content .= '</html>'; 19 20 echo $_export_content; 21 22 ob_get_contents(); 23 24 if ($extension == 'doc' || $extension == 'docx') header('Content-type:application/word'); 25 header('Content-Disposition: attachment; filename=' . $filename . '.' . $extension); 26 27 ob_flush(); 28 flush(); 29 } 30 31 $html = '<b style="color: red">你看我哪裏像好人</b>'; 32 33 $wordname = 'test-file'; 34 35 export_html_to_word($html, $wordname);
1 /** 2 * PHP 使用 mpdf 導出PDF文件 3 * @param $content string PDF文件內容 若爲html代碼,css內容分離 非id,class選擇器可能失效,解決辦法直接寫進標籤style中 4 * @param $filename string 保存文件名 5 * @param $css string css樣式內容 6 */ 7 function export_pdf_by_mpdf($content, $filename, $css = '') 8 { 9 set_time_limit(0); 10 11 include_once './mpdf/mpdf.php'; 12 13 //實例化mpdf 14 $_obj_mpdf = new \mPDF('utf-8', 'A4', '', '宋體', 0, 0, 20, 10); 15 16 //設置PDF頁眉內容 (自定義編輯樣式) 17 $header = '<table width="95%" style="margin:0 auto;border-bottom: 1px solid #4F81BD; vertical-align: middle; font-family:serif; font-size: 9pt; color: #000088;"> 18 <tr><td width="10%"></td><td width="80%" align="center" style="font-size:16px;color:#A0A0A0">頁眉</td><td width="10%" style="text-align: right;"></td></tr></table>'; 19 20 //設置PDF頁腳內容 (自定義編輯樣式) 21 $footer = '<table width="100%" style=" vertical-align: bottom; font-family:serif; font-size: 9pt; color: #000088;"><tr style="height:30px"></tr><tr> 22 <td width="10%"></td><td width="80%" align="center" style="font-size:14px;color:#A0A0A0">頁腳</td><td width="10%" style="text-align: left;"> 23 頁碼:{PAGENO}/{nb}</td></tr></table>'; 24 25 //添加頁眉和頁腳到PDF中 26 $_obj_mpdf->SetHTMLHeader($header); 27 $_obj_mpdf->SetHTMLFooter($footer); 28 29 $_obj_mpdf->SetDisplayMode('fullpage');//設置PDF顯示方式 30 31 $_obj_mpdf->WriteHTML('<pagebreak sheet-size="210mm 297mm" />');//設置PDF的尺寸 A4紙規格尺寸:210mm*297mm 32 33 !empty($css) && $_obj_mpdf->WriteHTML($css, 1);//設置PDF css樣式 34 35 $_obj_mpdf->WriteHTML($content);//將$content內容寫入PDF 36 37 $_obj_mpdf->DeletePages(1, 1);//刪除PDF第一頁(因爲設置PDF尺寸致使多出的一頁) 38 39 //輸出PDF 直接下載PDF文件 40 //$_obj_mpdf->Output($filename . '.pdf', true); 41 //$_obj_mpdf->Output($filename . '.pdf', 'D'); 42 43 $_obj_mpdf->Output();//輸出PDF 瀏覽器預覽文件 可右鍵保存 44 exit; 45 } 46 47 $html = '<b style="color: red">你看我哪裏像好人</b>'; 48 49 $wordname = 'test-file'; 50 51 export_pdf_by_mpdf($html, $wordname);