如何將PHPExcel檔案匯入Thinkphp3.2.3

來源:互聯網
上載者:User
本篇文章給大家分享的內容是如何將PHPExcel檔案匯入Thinkphp3.2.3,有著一定的參考價值,有需要的朋友可以參考一下

1.首先,先下載PHPExcel外掛程式:

ThinkPHP版本:3.2.3
PHPExcel版本:1.8

PHPExcel 官方下載地址:https://github.com/PHPOffice/PHPExcel

2.解壓後如下:


只要Classes 檔案夾,其它的沒有什麼用,將classes 檔案夾名改成 PHPExcel (自己任意起名)

3.將 PHPExcel 檔案下複製到Thinkphp 中,位置如下


4.一切準備就緒,開如我們的征程吧。


前端代碼:

<form action="{:U('Index/upload')}" method="post" enctype="multipart/form-data">   <ul>        <li><input type="file" name="files" /></li>        <li><input type="submit" value="上傳" /></li>   </ul></form>

後端代碼(IndexController.class.php 中的 upload方法):

public function upload(){        if(isset($_FILES["files"]) && ($_FILES["files"]["error"] == 0)){            $result = importExecl($_FILES["files"]["tmp_name"]);            echo '<pre />';            print_r($result);            die;                 }        }


其中 importExecl 寫在公用方法中,位置如下



公用方法的代碼如下:

function importExecl($file='', $sheet=0){      $file = iconv("utf-8", "gb2312", $file);                  //轉碼         if(empty($file) OR !file_exists($file)) {             die('file not exists!');         }         vendor("PHPExcel.PHPExcel");                             // 引入我們自己匯入的檔案       $objRead = new PHPExcel_Reader_Excel2007();   //建立reader對象         if(!$objRead->canRead($file)){             $objRead = new PHPExcel_Reader_Excel5();                  if(!$objRead->canRead($file)){                      die('No Excel!');                 }          }                $cellName = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',     'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',      'X', 'Y', 'Z', 'AA', 'AB', 'AC', 'AD', 'AE', 'AF', 'AG', 'AH', 'AI',      'AJ', 'AK', 'AL', 'AM', 'AN', 'AO', 'AP', 'AQ', 'AR', 'AS', 'AT', 'AU',       'AV', 'AW', 'AX', 'AY', 'AZ');                      $obj = $objRead->load($file);  //建立excel對象                 $currSheet = $obj->getSheet($sheet);   //擷取指定的sheet表                 $columnH = $currSheet->getHighestColumn();   //取得最大的列號                 $columnCnt = array_search($columnH, $cellName);                 $rowCnt = $currSheet->getHighestRow();   //擷取總行數                              $data = array();                 for($_row=1; $_row<=$rowCnt; $_row++){  //讀取內容                     for($_column=0; $_column<=$columnCnt; $_column++){                           $cellId = $cellName[$_column].$_row;                                $cellValue = $currSheet->getCell($cellId)->getValue();                                 //$cellValue = $currSheet->getCell($cellId)->getCalculatedValue();  #擷取公式計算的值                                if($cellValue instanceof PHPExcel_RichText){   //富文本轉換字串                                    $cellValue = $cellValue->__toString();                                 }                                                      $data[$_row][$cellName[$_column]] = $cellValue;                            }                  }                    return $data;      }

5.最後上傳 XLS 檔案,成功的話,列印如下:



6.最後,代碼寫的比較簡單,檔案類型,大小自己可以驗證,我這裡就不寫了,以上代碼親測,沒有問題。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.