当前位置:首页 > CMS教程 > Thinkphp > 列表

ThinkPHP 框架实现的读取excel导入数据库操作示例

发布:smiling 来源: PHP粉丝网  添加日期:2022-02-27 10:25:46 浏览: 评论:0 

这篇文章主要介绍了ThinkPHP 框架实现的读取excel导入数据库操作,结合实例形式分析了thinkPHP针对Excel文件的读取、解析以及数据库的写入相关操作技巧,需要的朋友可以参考下。

本文实例讲述了ThinkPHP 框架实现的读取excel导入数据库操作,分享给大家供大家参考,具体如下:

入口文件中:

require_once VENDOR_PATH.'PHPExcel/PHPExcel/IOFactory.php';

require_once VENDOR_PATH.'PHPExcel/PHPExcel.php';

PHP:

  1. namespace Home\Controller; 
  2. class ExcelController extends CommonController 
  3. public function Import() { 
  4. // vendor('PHPExcel.PHPExcel.IOFactory'); 
  5. vendor("PHPExcel.PHPExcel.PHPExcel"); 
  6. vendor("PHPExcel.PHPExcel.Writer.Excel5"); 
  7. vendor("PHPExcel.PHPExcel.Writer.Excel2007"); 
  8. //$excel = new PHPExcel(); 
  9. $fileName = './trans_rate.xlsx'
  10. date_default_timezone_set('PRC'); 
  11. // 读取excel文件 
  12. try { 
  13. $objPHPExcel = \PHPExcel_IOFactory::load($fileName); 
  14. $inputFileType = \PHPExcel_IOFactory::identify($fileName); 
  15. $objReader = \PHPExcel_IOFactory::createReader($inputFileType); 
  16. // $objPHPExcel = $objReader->load($fileName); 
  17. // 确定要读取的sheet $sheet = $objPHPExcel->getSheet(0); 
  18. $highestRow = $sheet->getHighestRow(); 
  19. $highestColumn = $sheet->getHighestColumn(); 
  20. // 获取一行的数据 
  21. // $phone_str = ''; 
  22. for ($row = 3; $row <= $highestRow$row++) { 
  23.  $row_data = $sheet->rangeToArray('A' . $row . ':' . $highestColumn . $row, NULL, TRUE, FALSE); 
  24. //获取excel表中一行的数组数据 
  25. //dump($row_data); 
  26. $row_data = $row_data[0]; 
  27. $time = date('Y-m-d H:i:s'strtotime(trim($row_data[0]))); 
  28. $start_province = trim($row_data[1]); 
  29. $start_city = trim($row_data[2]); 
  30. ... 
  31. // $phone_str .= '"' . $phone . '",'; 
  32. $where['phone'] = $phone
  33. $id_arr = M(数据表名)->where($where)->getField('id'); 
  34. $user_id = !emptyempty($id_arr) ? $id_arr : 0; 
  35. $fields[] = [ 
  36. '数据表字段' => $user_id,//用户id 
  37.           ... 
  38.            ]; 
  39. // dump($fields); 
  40. $rate_add = M(数据表名)->addAll($fields); 
  41. dump($rate_add); 
  42. echo M()->getLastSql(); 
  43. if (!(0 < $rate_add)) { 
  44. CommonController::logProfile('添加excel数据,SQL:' . M()->getLastSql()); $this->endBack(0); } 
  45. // echo $phone_str . '<br />'; 
  46. // dump($user_id); 
  47. } catch (Exception $e) { 
  48. die('加载文件发生错误:"' . pathinfo($fileName, PATHINFO_BASENAME) . '": ' . $e->getMessage()); } }} 

php读取excel表数据:

  1. <?php 
  2. include 'ThinkPHP/Library/Vendor/PHPExcel/PHPExcel/IOFactory.php'
  3.  
  4. $inputFileName = './trans_rate.xlsx'
  5. date_default_timezone_set('PRC'); 
  6. // 读取excel文件 
  7. try { 
  8.   $inputFileType = PHPExcel_IOFactory::identify($inputFileName); 
  9.   $objReader = PHPExcel_IOFactory::createReader($inputFileType); 
  10.   $objPHPExcel = $objReader->load($inputFileName); 
  11. } catch(Exception $e) { 
  12.   die('加载文件发生错误:"'.pathinfo($inputFileName,PATHINFO_BASENAME).'": '.$e->getMessage()); 
  13.  
  14. // 确定要读取的sheet 
  15. $sheet = $objPHPExcel->getSheet(0); 
  16. $highestRow = $sheet->getHighestRow(); 
  17. $highestColumn = $sheet->getHighestColumn(); 
  18.  
  19. // 获取一行的数据 
  20. for ($row = 1; $row <= $highestRow$row++){ 
  21. // Read a row of data into an array 
  22. $rowData = $sheet->rangeToArray('A' . $row . ':' . $highestColumn . $row, NULL, TRUE, FALSE); 
  23. //这里得到的rowData都是一行的数据,得到数据后自行处理 
  24. var_dump($rowData); 
  25. echo "<br>"
  26. //$data为从excel中获取到的数组 
  27. for ($i =0; $i<count($data);$i++){ 
  28.   echo '<br>'
  29.   $gettimeexplode('-',$data[$i][0]); 
  30.   if (checkdate($month=$gettime[0],$day=$gettime[1],$year=$gettime[2])){ 
  31.     echo gmdate('Y-m-d',gmmktime(0,0,0,$month,$day,$year)); 
  32.   }else
  33.     echo ($data[$i][0]); 
  34.   } 
  35.   echo '-----------'
  36.   echo $data[$i][1]; 
  37.  
  38. <?php 
  39. include 'ThinkPHP/Library/Vendor/PHPExcel/PHPExcel/IOFactory.php'
  40.  
  41. $inputFileName = './test.xlsx'
  42. date_default_timezone_set('Asia/Shanghai'); 
  43. // 读取excel文件 
  44. try { 
  45.   $inputFileType = PHPExcel_IOFactory::identify($inputFileName); 
  46.   $objReader = PHPExcel_IOFactory::createReader($inputFileType); 
  47.   $objPHPExcel = $objReader->load($inputFileName); 
  48.  
  49.   // 确定要读取的sheet,什么是sheet,看excel的右下角,真的不懂去百度吧 
  50.   $sheet = $objPHPExcel->getSheet(0); 
  51.   $highestRow = $sheet->getHighestRow();//最大行 
  52.   $highestColumn = $sheet->getHighestColumn();//最大列 
  53.  
  54.   $data = array(); 
  55.   for($rowIndex=2;$rowIndex<=$highestRow;$rowIndex++){    //循环读取每个单元格的内容。注意行从1开始,列从A开始 
  56.     for($colIndex='A';$colIndex<=$highestColumn;$colIndex++){ 
  57.       $addr = $colIndex.$rowIndex
  58.       if($colIndex==="A"){ //指定H列为时间所在列 
  59.         $cell = gmdate("Y-m-d H:i:s", PHPExcel_Shared_Date::ExcelToPHP($sheet->getCell($addr)->getValue())); 
  60. //        $cell = PHPExcel_Shared_Date::ExcelToPHP($sheet->getCell($addr)->getValue()); 
  61. //        var_dump($cell);die; 
  62.       }else
  63.         $cell = $sheet->getCell($addr)->getValue(); 
  64.       } 
  65. //      if($cell instanceof PHPExcel_RichText){ //富文本转换字符串 
  66. //        $cell = $cell->__toString(); 
  67. //      } 
  68.       $data[$rowIndex][$colIndex] = $cell
  69.     } 
  70.   } 
  71. //  return $data; 
  72.   var_dump($data); 
  73. } catch(Exception $e) { 
  74.   die('加载文件发生错误:"'.pathinfo($inputFileName,PATHINFO_BASENAME).'": '.$e->getMessage()); 
  75. }

Tags: ThinkPHP读取excel导入

分享到: