博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHPExcel读取excel文件示例
阅读量:5014 次
发布时间:2019-06-12

本文共 2060 字,大约阅读时间需要 6 分钟。

PHPExcel的类库下载地址:  https://github.com/PHPOffice/PHPExcel

转载自: 

PHPExcel是一个非常方便生成Excel格式文件的类,官方下载包中带有大量如何生成各种样式excel文件的示例,但没有一个读取Excel文件的完整例子.Xiaoqiang根据网上的资料,整理了一份简单读取Excel文件的例子.

传统方法:

* @version 1.01 */ error_reporting(E_ALL); date_default_timezone_set('Asia/ShangHai'); /** PHPExcel_IOFactory */require_once '../Classes/PHPExcel/IOFactory.php'; // Check prerequisitesif (!file_exists("31excel5.xls")) { exit("not found 31excel5.xls.\n");} $reader = PHPExcel_IOFactory::createReader('Excel5'); //设置以Excel5格式(Excel97-2003工作簿)$PHPExcel = $reader->load("31excel5.xls"); // 载入excel文件$sheet = $PHPExcel->getSheet(0); // 读取第一個工作表$highestRow = $sheet->getHighestRow(); // 取得总行数$highestColumm = $sheet->getHighestColumn(); // 取得总列数$highestColumm= PHPExcel_Cell::columnIndexFromString($colsNum); //字母列转换为数字列 如:AA变为27 /** 循环读取每个单元格的数据 */for ($row = 1; $row <= $highestRow; $row++){
//行数是以第1行开始 for ($column = 0; $column < $highestColumm; $column++) {
//列数是以第0列开始 $columnName = PHPExcel_Cell::stringFromColumnIndex($column); echo $columnName.$row.":".$sheet->getCellByColumnAndRow($column, $row)->getValue()."
"; }} ?>

 

精简方法:

* @version 1.01 */ error_reporting(E_ALL); date_default_timezone_set('Asia/ShangHai'); /** PHPExcel_IOFactory */require_once '../Classes/PHPExcel/IOFactory.php'; // Check prerequisitesif (!file_exists("31excel5.xls")) { exit("not found 31excel5.xls.\n");} $reader = PHPExcel_IOFactory::createReader('Excel5'); //设置以Excel5格式(Excel97-2003工作簿)$PHPExcel = $reader->load("31excel5.xls"); // 载入excel文件$sheet = $PHPExcel->getSheet(0); // 读取第一個工作表$highestRow = $sheet->getHighestRow(); // 取得总行数$highestColumm = $sheet->getHighestColumn(); // 取得总列数 /** 循环读取每个单元格的数据 */for ($row = 1; $row <= $highestRow; $row++){
//行数是以第1行开始 for ($column = 'A'; $column <= $highestColumm; $column++) {
//列数是以A列开始 $dataset[] = $sheet->getCell($column.$row)->getValue(); echo $column.$row.":".$sheet->getCell($column.$row)->getValue()."
"; }} ?>

 

转载于:https://www.cnblogs.com/mingaixin/p/4746454.html

你可能感兴趣的文章
两个Html页面之间值得传递
查看>>
EasyUI datagrid 的多条件查询
查看>>
Mac升级bash到最新版本
查看>>
利用vagrant打包系统--制作自己的box
查看>>
美女与硬币问题
查看>>
计算几何算法概览 (转)
查看>>
Notepad++的ftp远程编辑功能
查看>>
数据库多对多关联表(Python&MySQL)
查看>>
[实变函数]1.2 集合的运算
查看>>
第06天
查看>>
设计模式的征途—5.原型(Prototype)模式
查看>>
iOS10 app连接不上网络的问题
查看>>
结对开发之电梯调度最终稿(徐梦迪&刘博)
查看>>
simple java mail
查看>>
信息建模
查看>>
Mybatis 数据库物理分页插件 PageHelper
查看>>
虚函数、纯虚函数详解
查看>>
z-stack中数据的发送,广播、组播、点对点
查看>>
Practial Vim 学习笔记一
查看>>
.NET中使用js实现百度搜索下拉提示效果[不是局部刷新,呜呜。。]
查看>>