码迷,mamicode.com
首页 > Web开发 > 详细

phpexcel读1

时间:2014-07-19 17:11:52      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:文件   数据   for   re   工作   c   

<?php
require_once ‘Classes/PHPExcel.php‘;
$fileName = ‘1.xls‘;
$path = ‘‘;
$filePath = $path.$fileName;
$PHPExcel = new PHPExcel(); 
$PHPReader = new PHPExcel_Reader_Excel2007();

//为了可以读取所有版本Excel文件
if(!$PHPReader->canRead($filePath))

$PHPReader = new PHPExcel_Reader_Excel5(); 
if(!$PHPReader->canRead($filePath))

echo ‘未发现Excel文件!‘;
return;
}
}

//不需要读取整个Excel文件而获取所有工作表数组的函数,感觉这个函数很有用,找了半天才找到
$sheetNames = $PHPReader->listWorksheetNames($filePath);

//读取Excel文件
$PHPExcel = $PHPReader->load($filePath);

//获取工作表的数目
$sheetCount = $PHPExcel->getSheetCount();

//选择第一个工作表
$currentSheet = $PHPExcel->getSheet(0);

//取得一共有多少列
$allColumn = $currentSheet->getHighestColumn(); 

//取得一共有多少行
$allRow = $currentSheet->getHighestRow(); 

//循环读取数据,默认编码是utf8,这里转换成gbk输出
for($currentRow = 1;$currentRow<=$allRow;$currentRow++)
{
for($currentColumn=‘A‘;$currentColumn<=$allColumn;$currentColumn++)
{
$address = $currentColumn.$currentRow;
echo iconv( ‘utf-8‘,‘gbk‘, $currentSheet->getCell($address)->getValue() )."\t";
}
echo "<br />";
}
?>

phpexcel读1,布布扣,bubuko.com

phpexcel读1

标签:文件   数据   for   re   工作   c   

原文地址:http://www.cnblogs.com/next-step/p/3853756.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!