php讀取excel類——PHP-ExcelReader

來源:互聯網
上載者:User

http://sourceforge.net/projects/phpexcelreader/

一、 概述

PHP-ExcelReader 是一個讀取 Excel xsl 檔案內容的一個 PHP 類。

它的下載網址: http://sourceforge.net/projects/phpexcelreader/

檔案名稱: phpExcelReader.zip

包含兩個必需檔案: oleread.inc 、 reader.php 。其它檔案是一個應用例子 , 讀我檔案等

二、 檔案使用

首先 , 包含 reader 類檔案: require_once " reader.php";

建立一個執行個體: $xl_reader= new Spreadsheet_Excel_Reader ( );

讀取 Excel 檔案資訊: $xl_reader->read("filename.xls");

它將匯出 Excel 檔案中所有可以識別的資料存放區在一個對象中。資料存放區在 2 個數組中,目前沒有提供方法 / 函數訪問這些資料. 可以像下面這樣簡單的使用數組名。

sheets 數組包含了讀取入對象的大量資料。它將匯出 Excel 檔案中所有可以識別的資料存放區在一個 2 維數組中   $xl_reader->sheets[x][y] 。 x   為文檔中的表序號, y   是以下的某個參數   :

l          numRows -- int --   表的行數

例如: $rows = $xl_reader->sheets[0]['numRows']

l          numCols -- int --   表的列數

例如: $cols = $xl_reader->sheets[0]['numCols']

l          cells -- array --   表的實際內容。是一個   [row][column] 格式的 2 維數組

  例如: $cell_2_4 = $xl_reader->sheets[0]['cells'][2][4] // 行 2, 列 4 中的資料

l          cellsInfo -- array --   表格中不同資料類型的資訊。每個都包含了表格的未經處理資料和類型。這個數組包含 2 部分: raw --   表格未經處理資料; type --   資料類型。

註:只顯示非文本資料資訊。

例如: $cell_info = $xl_reader[0]['cellsInfo'][2][4]

$cell_info['raw'] is the raw data from the cell

$cell_info['type'] is the data type

$xl_reader->sheets 數組樣本:

boundsheets   數組包含了對象的其它資訊,數組按 workbook 索引。   第二個索引為名稱: $xl_reader->boundsheets[i]['name']   返回第 i 個表的表名

例如: $sheetname = $xl_reader->boundsheets[0]['name']; // name of the first sheet

$xl_reader-> boundsheets 數組樣本:

Array

(

      [0] => Array

          (

              [name] => Sheet1

              [offset] => 3054

          )

  )

PHP-ExcelReader 只能支援   BIFF7 ,BIFF8 格式的檔案。包括 Excel95 到 Excel2003. 但是不包含 Excel5.0 及之前的版本. 實際上   Excel XP   和 Excel 2003   使用的 BIFF8X 是 BIFF8 格式的一個擴充 . 所有添加的特性可能不被 PHP-ExcelReader. 鎖支援。否則它只能以 Excel XP/2003 檔案運行。

如果出現: Fatal error: require_once() [function.require]: Failed opening required 'Spreadsheet/Excel/Reader/ OLERead.php ' (include_path='.;\xampp\php\PEAR') in XXXX

意 思是缺少Spreadsheet/Excel/Reader/OLERead.php這個檔案。但是確實是沒有這個檔案呀!找了找,在excel目錄下發 現了oleread.inc檔案,於是將Spreadsheet/Excel/Reader/OLERead.php換成 oleread.inc 就OK了!

也就是將

require_once 'Spreadsheet/Excel/Reader/OLERead.php';

修改為

require_once 'oleread.inc';

即可。

另外,在example.php 中,需要修改

$data->setOutputEncoding('CP1251');

$data->setOutputEncoding('CP936');

不然的話中文將會有問題。

如果是使用繁體的話可以修改為CP950、日文是CP932,具體可參考codepage說明。

還有,其內建的 jxlrwtest.xls 可能有問題,需要修改example.php中的:

$data->read(' jxlrwtest.xls ');

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.