PHPExcel 多工作表 導入
//參數初始化 $filePath = '';if ($_FILES["file"]["error"] > 0) { returnJSON(ERROR_INVALID, $_FILES["file"]["error"]); } $filePath = $_FILES["file"]["tmp_name"]; //建立reader對象 $this->load->library('PHPExcel'); $PHPReader = new PHPExcel_Reader_Excel2007(); if (!$PHPReader->canRead($filePath)) {//如果不是excel2007,嘗試使用excel5 $PHPReader = new PHPExcel_Reader_Excel5(); if (!$PHPReader->canRead($filePath)) { returnJSON(ERROR_INVALID, 'excel not existing'); } } //建立excel對象,此時你即可以通過excel對象讀取文件,也可以通過它寫入文件 $PHPExcel = $PHPReader->load($filePath); //導入第一個工作表的數據 $this->db->truncate('dzg_card_info'); //清理表 $currentSheet = $PHPExcel->getSheet(0); //讀取excel文件中的第一個工作表 $columnCount = $currentSheet->getHighestColumn(); //取得最大的列號 $rowCount = $currentSheet->getHighestRow(); //取得一共有多少行 for ($rowIndex = 2; $rowIndex <= $rowCount; $rowIndex++) { $name = iconv('utf-8', 'gbk', $currentSheet->getCell('B' . $rowIndex)->getValue()); $skill = iconv('utf-8', 'gbk', $currentSheet->getCell('C' . $rowIndex)->getValue()); $create_time = iconv('utf-8', 'gbk', $currentSheet->getCell('D' . $rowIndex)->getValue()); $this->admin_model->insertCardInfo($name, $skill, $create_time); } //導入第二個工作表 $this->db->truncate('dzg_card_message'); //清理表 $currentSheet = $PHPExcel->getSheet(1); //讀取excel文件中的第一個工作表 $columnCount = $currentSheet->getHighestColumn(); //取得最大的列號 $rowCount = $currentSheet->getHighestRow(); //取得一共有多少行 for ($rowIndex = 2; $rowIndex <= $rowCount; $rowIndex++) { $uid = iconv('utf-8', 'gbk', $currentSheet->getCell('B' . $rowIndex)->getValue()); $message = iconv('utf-8', 'gbk', $currentSheet->getCell('C' . $rowIndex)->getValue()); $this->admin_model->insertCardMsg($uid, $message); }</pre>
<form action="index.php?c=admin&m=importExcel&d=admin" method="post" enctype="multipart/form-data"> <label for="file">導入excel:</label> <input type="file" name="file" id="file" /> <input type="submit" name="submit" value="提交" /> </form>
本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!