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

php操作EXCLE(通过phpExcle实现读excel数据)

时间:2014-08-08 15:47:58      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:文件   数据   for   工作   new   ad   php   ui   

<?php
require_once(‘/PHPExcel/Reader/Excel2007.php‘);
$objReader = new PHPExcel_Reader_Excel2007;
$PHPExcel = $objReader->load(‘testExcel.xls‘);

/**
 * 读取excel文件中的第一个工作表
 */
$currentSheet = $PHPExcel->getSheet(0);
/**
 * 取得最大的列号
 */
$allColumn = $currentSheet->getHighestColumn();
/**
 * 取得总行数
 */
$allRow = $currentSheet->getHighestRow();

/**
 * 从第2行开始输出
 */
for($currentRow = 1; $currentRow<=$allRow;$currentRow++){
    //从第A列开始输出
    for($currentColumn="A";$currentColumn<=$allColumn;$currentColumn++){
        $val = $currentSheet->getCellByColumnAndRow(ord($currentColumn)-65,$currentRow)->getValue();
        if($currentColumn == ‘A‘){
            echo $val;
            //echo GetDate($val)."\t";
        }else{
            //echo $val;
            //如果输出汉字有乱码,则需要将输出内容用iconv函数进行编码转换,如下将gb2312编码转换为utf8
            echo iconv(‘utf-8‘,‘gb2312‘,$val);
        }
        echo "   ";
    }
    echo "<br>";
}

php操作EXCLE(通过phpExcle实现读excel数据),布布扣,bubuko.com

php操作EXCLE(通过phpExcle实现读excel数据)

标签:文件   数据   for   工作   new   ad   php   ui   

原文地址:http://www.cnblogs.com/tangchuanyang/p/3899261.html

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