本方法使用PHPEXCEL插件讀取excel文件轉化為數組了,后期還有沒有完成的我們可以把轉換成數組之后再保存到mysql數據庫這個就非常的方便了,代碼如下:
- <?php
- /**
- * @desc PHPEXCEL導入
- * return array();
- */
- function importExcel($file)
- {
- require_once 'PHPExcel.php';
- require_once 'PHPExcel/IOFactory.php';
- require_once 'PHPExcel/Reader/Excel5.php';
- $objReader = PHPExcel_IOFactory::createReader('Excel5');//use excel2007 for 2007 format
- $objPHPExcel = $objReader->load($file);
- $sheet = $objPHPExcel->getSheet(0);
- $highestRow = $sheet->getHighestRow(); // 取得總行數
- $highestColumn = $sheet->getHighestColumn(); // 取得總列數
- $objWorksheet = $objPHPExcel->getActiveSheet();
- $highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn);
- $excelData = array();
- for ($row = 1; $row <= $highestRow; $row++) {
- for ($col = 0; $col < $highestColumnIndex; $col++) {
- $excelData[$row][] =(string)$objWorksheet->getCellByColumnAndRow($col, $row)->getValue();
- }
- }
- return $excelData;
- }
- //用法:
- importExcel('test.xsl');
- //開源代碼Vevb.com
- ?>
新聞熱點
疑難解答