PHPEXCEL导入excel表格生成数组
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-26 11:11:43 浏览: 评论:0
本方法使用PHPEXCEL插件读取excel文件转化为数组了,后期还有没有完成的我们可以把转换成数组之后再保存到mysql数据库这个就非常的方便了,代码如下:
- <?php
- /**
- * @desc PHPEXCEL导入
- * return array();
- */
- function importExcel($file)
- {
- require_once 'PHPExcel.php';
- require_once 'PHPExcel/IOFactory.php';
- require_once 'PHPExcel/Reader/Excel5.php';
- $objReader = PHPExcel_IOFactory::createReader('Excel5');//use excel2007 for 2007 format
- $objPHPExcel = $objReader->load($file);
- $sheet = $objPHPExcel->getSheet(0);
- $highestRow = $sheet->getHighestRow(); // 取得总行数
- $highestColumn = $sheet->getHighestColumn(); // 取得总列数
- $objWorksheet = $objPHPExcel->getActiveSheet();
- $highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn);
- $excelData = array();
- for ($row = 1; $row <= $highestRow; $row++) {
- for ($col = 0; $col < $highestColumnIndex; $col++) {
- $excelData[$row][] =(string)$objWorksheet->getCellByColumnAndRow($col, $row)->getValue();
- }
- }
- return $excelData;
- }
- //用法:
- importExcel('test.xsl');
- //开源代码phpfensi.com
- ?>
Tags: PHPEXCEL导入 excel表格数组
- 上一篇:php实现新浪短链接调用API代码
- 下一篇:php中用缓存与不用缓存性能测试
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)