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 ');