国产一级a片免费看高清,亚洲熟女中文字幕在线视频,黄三级高清在线播放,免费黄色视频在线看

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
PHP導(dǎo)入Excel



原作者:冰山上的播客
看到這篇文章的時候,很是驚訝原作者的耐心,雖然我們在平時用的也有一些,但沒有作者列出來的全,寫excel的時候,我用過pear的庫,也用過pack壓包的頭,同樣那些利用smarty等作的簡單替換xml的也用過,csv的就更不用談了。呵呵。(COM方式不講了,這種可讀的太多了,我也寫過利用wps等進(jìn)行word等的生成之類的文章 )
但是在讀的時候,只用過一種,具體是什么忘了,要回去翻代碼了。因為采用的是拿來主義,記不住。
原文地址:http://xinsync.xju.edu.cn/index.php/archives/3858
原文內(nèi)容:

最近因項目需要,需要開發(fā)一個模塊,把系統(tǒng)中的一些數(shù)據(jù)導(dǎo)出成Excel,修改后再導(dǎo)回系統(tǒng)。就趁機對這個研究了一番,下面進(jìn)行一些總結(jié)
基本上導(dǎo)出的文件分為兩種:
1:類Excel格式,這個其實不是傳統(tǒng)意義上的Excel文件,只是因為Excel的兼容能力強,能夠正確打開而已。修改這種文件后再保存,通常會提示你是否要轉(zhuǎn)換成Excel文件。
優(yōu)點:簡單。
缺點:難以生成格式,如果用來導(dǎo)入需要自己分別編寫相應(yīng)的程序。
2:Excel格式,與類Excel相對應(yīng),這種方法生成的文件更接近于真正的Excel格式。

如果導(dǎo)出中文時出現(xiàn)亂碼,可以嘗試將字符串轉(zhuǎn)換成gb2312,例如下面就把$yourStr從utf-8轉(zhuǎn)換成了gb2312:
$yourStr = mb_convert_encoding(”gb2312″, “UTF-8″, $yourStr);

有網(wǎng)友指出上面的轉(zhuǎn)換是錯誤的,確實,上面的參數(shù)順序是iconv函數(shù)的,$yourStr應(yīng)該是第一個參數(shù)。

下面詳細(xì)列舉幾種方法。
一、PHP導(dǎo)出Excel

1:第一推薦無比風(fēng)騷的PHPExcel,官方網(wǎng)站: http://www.codeplex.com/PHPExcel
導(dǎo)入導(dǎo)出都成,可以導(dǎo)出office2007格式,同時兼容2003。
下載下來的包中有文檔和例子,大家可以自行研究。
抄段例子出來:

PHP代碼
  1. <?php  
  2. /** 
  3. PHPExcel 
  4. * 
  5. * Copyright (C) 2006 - 2007 PHPExcel 
  6. * 
  7. * This library is free software; you can redistribute it and/or 
  8. * modify it under the terms of the GNU Lesser General Public 
  9. * License as published by the Free Software Foundation; either 
  10. * version 2.1 of the License, or (at your option) any later version. 
  11. * 
  12. * This library is distributed in the hope that it will be useful, 
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of 
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
  15. * Lesser General Public License for more details. 
  16. * 
  17. * You should have received a copy of the GNU Lesser General Public 
  18. * License along with this library; if not, write to the Free Software 
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA 
  20. * 
  21. * @category   PHPExcel 
  22. * @package    PHPExcel 
  23. * @copyright  Copyright (c) 2006 - 2007 PHPExcel ( http://www.codeplex.com/PHPExcel) 
  24. * @license    http://www.gnu.org/licenses/lgpl.txt    LGPL 
  25. * @version    1.5.0, 2007-10-23 
  26. */  
  27.   
  28. /** Error reporting */  
  29. error_reporting(E_ALL);  
  30.   
  31. /** Include path **/  
  32. set_include_path(get_include_path() . PATH_SEPARATOR . ‘../Classes/’);  
  33.   
  34. /** PHPExcel */  
  35. include ‘PHPExcel.php’;  
  36.   
  37. /** PHPExcel_Writer_Excel2007 */  
  38. include ‘PHPExcel/Writer/Excel2007.php’;  
  39.   
  40. // Create new PHPExcel object  
  41. echo date(’H:i:s’) . ” Create new PHPExcel object\n”;  
  42. $objPHPExcel = new PHPExcel();  
  43.   
  44. // Set properties  
  45. echo date(’H:i:s’) . ” Set properties\n”;  
  46. $objPHPExcel->getProperties()->setCreator(”Maarten Balliauw”);  
  47. $objPHPExcel->getProperties()->setLastModifiedBy(”Maarten Balliauw”);  
  48. $objPHPExcel->getProperties()->setTitle(”O(jiān)ffice 2007 XLSX Test Document”);  
  49. $objPHPExcel->getProperties()->setSubject(”O(jiān)ffice 2007 XLSX Test Document”);  
  50. $objPHPExcel->getProperties()->setDescrīption(”Test document for Office 2007 XLSX, generated using PHP classes.”);  
  51. $objPHPExcel->getProperties()->setKeywords(”office 2007 openxml php”);  
  52. $objPHPExcel->getProperties()->setCategory(”Test result file”);  
  53.   
  54. // Add some data  
  55. echo date(’H:i:s’) . ” Add some data\n”;  
  56. $objPHPExcel->setActiveSheetIndex(0);  
  57. $objPHPExcel->getActiveSheet()->setCellValue(’A1′, ‘Hello’);  
  58. $objPHPExcel->getActiveSheet()->setCellValue(’B2′, ‘world!’);  
  59. $objPHPExcel->getActiveSheet()->setCellValue(’C1′, ‘Hello’);  
  60. $objPHPExcel->getActiveSheet()->setCellValue(’D2′, ‘world!’);  
  61.   
  62. // Rename sheet  
  63. echo date(’H:i:s’) . ” Rename sheet\n”;  
  64. $objPHPExcel->getActiveSheet()->setTitle(’Simple’);  
  65.   
  66. // Set active sheet index to the first sheet, so Excel opens this as the first sheet  
  67. $objPHPExcel->setActiveSheetIndex(0);  
  68.   
  69. // Save Excel 2007 file  
  70. echo date(’H:i:s’) . ” Write to Excel2007 format\n”;  
  71. $objWriter = new PHPExcel_Writer_Excel2007($objPHPExcel);  
  72. $objWriter->save(str_replace(’.php’, ‘.xlsx’, __FILE__));  
  73.   
  74. // Echo done  
  75. echo date(’H:i:s’) . ” Done writing file.”;  

 


2、使用pear的Spreadsheet_Excel_Writer
下載地址: http://pear.php.net/package/Spreadsheet_Excel_Writer
此類依賴于OLE,下載地址:http://pear.php.net/package/OLE
需要注意的是導(dǎo)出的Excel文件格式比較老,修改后保存會提示是否轉(zhuǎn)換成更新的格式。
不過可以設(shè)定格式,很強大。

PHP代碼
  1. <?php  
  2. require_once ‘Spreadsheet/Excel/Writer.php’;  
  3.   
  4. // Creating a workbook  
  5. $workbook = new Spreadsheet_Excel_Writer();  
  6.   
  7. // sending HTTP headers  
  8. $workbook->send(’test.xls’);  
  9.   
  10. // Creating a worksheet  
  11. $worksheet =& $workbook->addWorksheet(’My first worksheet’);  
  12.   
  13. // The actual data  
  14. $worksheet->write(0, 0, ‘Name’);  
  15. $worksheet->write(0, 1, ‘Age’);  
  16. $worksheet->write(1, 0, ‘John Smith’);  
  17. $worksheet->write(1, 1, 30);  
  18. $worksheet->write(2, 0, ‘Johann Schmidt’);  
  19. $worksheet->write(2, 1, 31);  
  20. $worksheet->write(3, 0, ‘Juan Herrera’);  
  21. $worksheet->write(3, 1, 32);  
  22.   
  23. // Let’s send the file  
  24. $workbook->close();  
  25. ?>  

 

3:利用smarty,生成符合Excel規(guī)范的XMLHTML文件
支持格式,非常完美的導(dǎo)出方案。不過導(dǎo)出來的的本質(zhì)上還是XML文件,如果用來導(dǎo)入就需要另外處理了。
詳細(xì)內(nèi)容請見rardge大俠的帖子:http://bbs.chinaunix.net/viewthread.php?tid=745757

需要注意的是如果導(dǎo)出的表格行數(shù)不確定時,最好在模板中把”ss:ExpandedColumnCount=”5″ ss:ExpandedRowCount=”21″”之類的東西刪掉。

4、利用pack函數(shù)打印出模擬Excel格式的斷句符號,這種更接近于Excel標(biāo)準(zhǔn)格式,用office2003修改后保存,還不會彈出提示,推薦用這種方法。
缺點是無格式。

PHP代碼
  1. <?php  
  2. // Send Header  
  3. header(”Pragma: public”);  
  4. header(”Expires: 0″);  
  5. header(”Cache-Control: must-revalidate, post-check=0, pre-check=0″);  
  6. header(”Content-Type: application/force-download”);  
  7. header(”Content-Type: application/octet-stream”);  
  8. header(”Content-Type: application/download”);;  
  9. header(”Content-Disposition: attachment;filename=test.xls “);  
  10. header(”Content-Transfer-Encoding: binary “);  
  11. // XLS Data Cell  
  12.   
  13. xlsBOF();  
  14. xlsWriteLabel(1,0,”My excel line one”);  
  15. xlsWriteLabel(2,0,”My excel line two : “);  
  16. xlsWriteLabel(2,1,”Hello everybody”);  
  17.   
  18. xlsEOF();  
  19.   
  20. function xlsBOF() {  
  21. echo pack(”ssssss”, 0×809, 0×8, 0×0, 0×10, 0×0, 0×0);  
  22. return;  
  23. }  
  24. function xlsEOF() {  
  25. echo pack(”ss”, 0×0A, 0×00);  
  26. return;  
  27. }  
  28. function xlsWriteNumber($Row$Col$Value) {  
  29. echo pack(”sssss”, 0×203, 14, $Row$Col, 0×0);  
  30. echo pack(”d”, $Value);  
  31. return;  
  32. }  
  33. function xlsWriteLabel($Row$Col$Value ) {  
  34. $L = strlen($Value);  
  35. echo pack(”ssssss”, 0×204, 8 + $L$Row$Col, 0×0, $L);  
  36. echo $Value;  
  37. return;  
  38. }  
  39. ?>  
  40. 不過筆者在64位linux系統(tǒng)中使用時失敗了,斷句符號全部變成了亂碼。  
  41.   
  42. 5、使用制表符、換行符的方法  
  43. 制表符”\t”用戶分割同一行中的列,換行符”\t\n”可以開啟下一行。  
  44. <?php  
  45. header(”Content-Type: application/vnd.ms-execl”);  
  46. header(”Content-Disposition: attachment; filename=myExcel.xls”);  
  47. header(”Pragma: no-cache”);  
  48. header(”Expires: 0″);  
  49. /*first line*/  
  50. echo “hello”.”\t”;  
  51. echo “world”.”\t”;  
  52. echo “\t\n”;  
  53.   
  54. /*start of second line*/  
  55. echo “this is second line”.”\t”;  
  56. echo “Hi,pretty girl”.”\t”;  
  57. echo “\t\n”;  
  58. ?>  

 

6、使用com
如果你的PHP可以開啟com模塊,就可以用它來導(dǎo)出Excel文件

PHP代碼
  1. <?PHP  
  2. $filename = “c:/spreadhseet/test.xls”;  
  3. $sheet1 = 1;  
  4. $sheet2 = “sheet2″;  
  5. $excel_app = new COM(”Excel.application”) or Die (”Did not connect”);  
  6. print “Application name: {$excel_app->Application->value}\n” ;  
  7. print “Loaded version: {$excel_app->Application->version}\n”;  
  8. $Workbook = $excel_app->Workbooks->Open(”$filename”) or Die(”Did not open $filename $Workbook”);  
  9. $Worksheet = $Workbook->Worksheets($sheet1);  
  10. $Worksheet->activate;  
  11. $excel_cell = $Worksheet->Range(”C4″);  
  12. $excel_cell->activate;  
  13. $excel_result = $excel_cell->value;  
  14. print “$excel_result\n”;  
  15. $Worksheet = $Workbook->Worksheets($sheet2);  
  16. $Worksheet->activate;  
  17. $excel_cell = $Worksheet->Range(”C4″);  
  18. $excel_cell->activate;  
  19. $excel_result = $excel_cell->value;  
  20. print “$excel_result\n”;  
  21. #To close all instances of excel:  
  22. $Workbook->Close;  
  23. unset($Worksheet);  
  24. unset($Workbook);  
  25. $excel_app->Workbooks->Close();  
  26. $excel_app->Quit();  
  27. unset($excel_app);  
  28. ?>  


一個更好的例子: http://blog.chinaunix.net/u/16928/showart_387171.html

 

一、PHP導(dǎo)入Excel

1:還是用PHPExcel,官方網(wǎng)站: http://www.codeplex.com/PHPExcel

2:使用PHP-ExcelReader,下載地址: http://sourceforge.net/projects/phpexcelreader
舉例:

PHP代碼
  1. <?php  
  2. require_once ‘Excel/reader.php’;  
  3.   
  4. // ExcelFile($filename, $encoding);  
  5. $data = new Spreadsheet_Excel_Reader();  
  6.   
  7. // Set output Encoding.  
  8. $data->setOutputEncoding(’utf8′);  
  9.   
  10. $data->read(’ jxlrwtest.xls’);  
  11.   
  12. error_reporting(E_ALL ^ E_NOTICE);  
  13.   
  14. for ($i = 1; $i <= $data->sheets[0]['numRows']; $i++) {  
  15. for ($j = 1; $j <= $data->sheets[0]['numCols']; $j++) {  
  16. echo “\”".$data->sheets[0]['cells'][$i][$j].”\”,”;  
  17. }  
  18. echo “\n”;  
  19. }  
  20.   
  21. ?>  
本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Excel中各種VBA寫法 - 彷徨......豁然開朗 - 博客園
用PHP創(chuàng)建EXCEL文件的最簡單的方法
總結(jié) php導(dǎo)出Excel php
php利用PHPExcel類導(dǎo)出導(dǎo)入Excel用法
PHP 導(dǎo)出Excel一點小經(jīng)驗 解決亂碼問題.
php 操作excel文件的方法小結(jié)
更多類似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服