php ExcelReader读取excel文件
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-05 14:13:47 浏览: 评论:0
测试用excel文件:测试.xls,文件名:phpexcelreader.zip
包含两个必需文件:oleread.inc,reader.php,其它文件是一个应用例子,自述文件等.
二、文件使用
首先,包含 reader 类文件:require_once " reader.php";
新建一个实例:$xl_reader= new spreadsheet_excel_reader ( );
设定编码信息:$xl_reader ->setoutputencoding('utf-8');//不设定可能会是乱码,要和网页显示编码一致.
读取 excel 文件信息:$xl_reader->read("filename.xls");
它将导出 excel 文件中所有可以识别的数据存储在一个对象中,数据存储在 2 个数组中,目前没有提供方法函数访问这些数据,可以像下面这样简单的使用数组名.
sheets 数组包含了读取入对象的大量数据,它将导出 excel 文件中所有可以识别的数据存储在一个 2 维数组中 $xl_reader->sheets[x][y],x 为文档中的表序号,y 是以下的某个参数:
① numrows -- int -- 表的行数
例如:$rows = $xl_reader->sheets[0]['numrows']
② numcols -- int -- 表的列数
例如:$cols = $xl_reader->sheets[0]['numcols']
③ cells -- array -- 表的实际内容,是一个 [row][column] 格式的 2 维数组
例如: $cell_2_4 = $xl_reader->sheets[0]['cells'][2][4] // 行 2, 列 4 中的数据
④ 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
Tags: ExcelReader 读取excel文件
- 上一篇:php树型菜单类
- 下一篇:PHP统计目录下的文件总数及代码行数
相关文章
- ·PHP Spreadsheet_Excel_Reader导入excel中文显示乱码(2013-12-04)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)