zoukankan      html  css  js  c++  java
  • [PHP]PHPOffice/PHPExcel数据导入方法

    ------------------------------------------------------------------------------------

    /**
     * PHPExcel数据导入方法
     * Document:https://github.com/PHPOffice/PHPExcel/blob/develop/Documentation/markdown/Overview/07-Accessing-Cells.md
    * @param string $file 文件名
    * @return msg SUCCESS:1, FALSE:$msg * @author farwish.com
    */ include './PHPExcel.php'; include './PHPExcel/IOFactory.php'; function excelReader($file) { if(@fopen($file, 'r')) { $objReader = PHPExcel_IOFactory::createReader('Excel2007'); if( ! $objReader->canRead($file)) { $objReader = PHPExcel_IOFactory::createReader('Excel5'); if( ! $objReader->canRead($file)) { die('仅支持 .xls 类型的文件 !'); } } $objReader->setReadDataOnly(true); $objPHPExcel = $objReader->load($file); // $objWorksheet = $objPHPExcel->getActiveSheet(); // 不兼容linux excel, 使用下面方式
        $objWorksheet = $objPHPExcel->getSheet(0);
    $highestRow = $objWorksheet->getHighestRow(); //10 $highestColumn = $objWorksheet->getHighestColumn(); //C $betten = 'A2:'.$highestColumn.$highestRow; $dataArray = $objWorksheet->rangeToArray( $betten, '', TRUE, TRUE ); if($dataArray && is_array($dataArray)) { foreach($dataArray as $v) { if(intval($v[0]) == 0) { die('数据的格式不正确 !'); } //Your code here...
            $msg = 1;
    } } else { $msg = '文件没有数据'; } } else { $msg = '文件不存在 !'; }
     
     return $msg;  }

     上述方法经过适当修改后即可适应各种场合,更多应用 欢迎交流。

    Link:http://www.cnblogs.com/farwish/p/4279212.html

  • 相关阅读:
    hdu 2586 How far away ?
    zoj 3195 Design the city
    hust 1022 K-diff subsequence
    poj 2253 Frogger
    poj 1470 Closest Common Ancestors
    poj 2553 The Bottom of a Graph
    poj 1236 Network of Schools
    poj 3694 Network
    uva 10131 Is Bigger Smarter ? (简单dp 最长上升子序列变形 路径输出)
    2014年百度之星程序设计大赛
  • 原文地址:https://www.cnblogs.com/farwish/p/4279212.html
Copyright © 2011-2022 走看看