來源於:https://www.cnblogs.com/MyIsLu/p/6830579.htmlphp
PHPExcel 擴展包下載地址: https://github.com/PHPOffice/PHPExcelhtml
放在擴展類庫目錄下。
git
導出:github
控制器代碼以下:數據庫
1 //導出 2 function excel() 3 { 4 $path = dirname(__FILE__);//找到當前腳本所在路徑 5 Loader::import('PHPExcel.Classes.PHPExcel');//手動引入PHPExcel.php 6 Loader::import('PHPExcel.Classes.PHPExcel.IOFactory.PHPExcel_IOFactory');//引入IOFactory.php 文件裏面的PHPExcel_IOFactory這個類 7 $PHPExcel = new \PHPExcel();//實例化 8 9 $PHPSheet = $PHPExcel->getActiveSheet(); 10 $PHPSheet->setTitle("demo");//給當前活動sheet設置名稱 11 $PHPSheet->setCellValue("A1","姓名")->setCellValue("B1","分數");//表格數據 12 $PHPSheet->setCellValue("A2","張三")->setCellValue("B2","2121");//表格數據 13 $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,"Excel2007");//建立生成的格式 14 header('Content-Disposition: attachment;filename="表單數據.xlsx"');//下載下來的表格名 15 header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); 16 $PHPWriter->save("php://output");//表示在$path路徑下面生成demo.xlsx文件 17 }
調用excel方法就能夠生成一個表格了,後續的根據本身的須要本身去寫代碼.數組
PHPexcel 表格數據導入數據庫 city 表,在這以前本身先建立好表單,我此次用的都是地址數據表作的測試:app
導入post
我這裏導入的以前導出的那個表格:測試
view:fetch
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 </head> 7 <body> 8 <form action="" enctype="multipart/form-data" method="post"> 9 <input type="file" name="excel" /> 10 <input type="submit" value="導入"> 11 </form> 12 </body> 13 </html>
controller:
1 //導入 2 public function inserExcel() 3 { 4 if(request() -> isPost()) 5 { 6 Loader::import('PHPExcel.Classes.PHPExcel'); 7 Loader::import('PHPExcel.Classes.PHPExcel.IOFactory.PHPExcel_IOFactory'); 8 Loader::import('PHPExcel.Classes.PHPExcel.Reader.Excel5'); 9 //獲取表單上傳文件 10 $file = request()->file('excel'); 11 $info = $file->validate(['ext' => 'xlsx'])->move(ROOT_PATH . 'public'); //上傳驗證後綴名,以及上傳以後移動的地址 E:\wamp\www\bick\public 12 if($info) 13 { 14 // echo $info->getFilename(); 15 $exclePath = $info->getSaveName(); //獲取文件名 16 $file_name = ROOT_PATH . 'public' . DS . $exclePath;//上傳文件的地址 17 $objReader =\PHPExcel_IOFactory::createReader('Excel2007'); 18 $obj_PHPExcel =$objReader->load($file_name, $encode = 'utf-8'); //加載文件內容,編碼utf-8 19 echo "<pre>"; 20 $excel_array=$obj_PHPExcel->getsheet(0)->toArray(); //轉換爲數組格式 21 array_shift($excel_array); //刪除第一個數組(標題); 22 $city = []; 23 foreach($excel_array as $k=>$v) { 24 $city[$k]['name'] = $v[0]; 25 $city[$k]['number'] = $v[1]; 26 } 27 dump($city); 28 }else 29 { 30 echo $file->getError(); 31 } 32 }else 33 { 34 return $this -> fetch(); 35 } 36 37 }