使用PHPExcel类读取excel文件中的内容

2013年5月11日 分类: PHP (131 个脚步)
//引入PHPExcel类库
require_once 'PHPExcel.php';
/**对excel里的日期进行格式转化*/
function GetData($val){
$jd = GregorianToJD(1, 1, 1970);
$gregorian = JDToGregorian($jd+intval($val)-25569);
return $gregorian;/**显示格式为 “月/日/年” */
}

$filePath = 'test.xlsx';
$phpExcel = new PHPExcel ();
$PHPReader = new PHPExcel_Reader_Excel2007();
if (! $PHPReader->canRead ( $filePath )) {
$PHPReader = new PHPExcel_Reader_Excel5 ();
if (! $PHPReader->canRead ( $filePath )) {
echo '不是EXCEL文件!';exit;
}
}
$PHPExcel = $PHPReader->load($filePath);
//读表第一个工作表
$currentSheet = $PHPExcel->getSheet(0);
//取得最大的列号
$allColumn = $currentSheet->getHighestColumn();
//取得总行数
$allRow = $currentSheet->getHighestRow();
//从第二行开始输出,因为第一行为列名
for($currentRow = 2;$currentRow <= $allRow;$currentRow++){
//从A列开始读取数据
for($currentColumn= 'A';$currentColumn<= $allColumn; $currentColumn++){
//ord()将字符转为十进制数
$val = $currentSheet->getCellByColumnAndRow(ord($currentColumn) - 65,$currentRow)->getValue();
if($currentColumn=="F") { //假设F列为日期格式
echo GetData($val);
}
else {
//防止乱码,使用iconv函数转码输出
echo iconv('utf-8','gb2312', $val)."\t";
}
}
echo "<br>";
}

PHPExcel下载地址:http://phpexcel.codeplex.com/releases/view/96183

使用PHPExcel类读取excel文件中的内容 【声明】本文 使用PHPExcel类读取excel文件中的内容 为柠之漠然原创文章,转载请注明出自 枫之落叶
并保留本文有效链接:https://blog.shiniv.com/2013/05/%e4%bd%bf%e7%94%a8phpexcel%e7%b1%bb%e8%af%bb%e5%8f%96excel%e6%96%87%e4%bb%b6%e4%b8%ad%e7%9a%84%e5%86%85%e5%ae%b9/ , 转载请保留本声明!

标签: ,
目前还没有任何评论.
你必须要启用 Javascript