首页 > 代码库 > Spreadsheet_Excel_Reader类学习心得

Spreadsheet_Excel_Reader类学习心得

一:Spreadsheet_Excel_Reader类的基本使用方法:

   $reader=new Spreadsheet_Excel_Reader();
   $reader->setOutputEncoding("GBK");
   $reader->read($fileName);
   $rows=$reader->sheets[2][‘numRows‘];
   $cells=$reader->sheets[2][‘cells‘];

二:经常使用到的一些基本函数:

 1>  function rowhidden($row,$sheet=0)

判断excel中的某一列是否为隐藏,返回值为bool类型。

 2> function colspan($row,$col,$sheet=0); function rowspan($row,$col,$sheet=0);

判断Excel中的单元格所占的列数或者行数,在判断合并单元格的时候非常有效。

 3> function val($row,$col,$sheet=0);

获取某一个单元格中的具体的值。

4> function rowcount($sheet=0); function colcount($sheet=0);

获取Excel中某一个表的函数或列数,与$reader->sheets[0][‘numRows‘]和$reader->sheets[0][‘numCols‘]获得的行数和列数是一致的。

5> function style($row,$col,$sheet=0,$properties=‘‘);

返回某一个具体的单元格的样式,可以根据样式对单元格进行划分。