您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“phpexcel導(dǎo)入excel處理大數(shù)據(jù)的方法”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
先下載對應(yīng)phpExcel 的包就行了https://github.com/PHPOffice/PHPExcel
下載完成 把那個(gè)Classes 這個(gè)文件夾里面的 文件跟文件夾拿出來就好了。
直接寫到PHPExcel 這個(gè)文件里面的。調(diào)用很簡單。引入phpExcel 這個(gè)類傳遞對應(yīng)的excel 文件的路徑就好了
現(xiàn)在上傳到指定的目錄,然后加載上傳的excel文件讀取這里讀取是的時(shí)候不轉(zhuǎn)換數(shù)組了。注意:是Sheet可以多個(gè)讀取,php上傳值要設(shè)置大,上傳超時(shí)要設(shè)置長。
header('Content-type: text/html; charset=utf-8'); //設(shè)置頁面編碼 require_once 'phpexcel.class.php'; //引入文件 require_once 'PHPExcel/IOFactory.php'; //引入文件 require_once 'PHPExcel/Reader/Excel2007.php'; //引入文件 $uploadfile = $_FILES['select_file']['tmp_name']; //獲取上傳文件 $auid = $_SESSION['auid']; $date = date('Ymd'); $rand = rand(1,9999); $_month=str_replace('-','',$date); $file_name = str_pad($auid, 4, 0, STR_PAD_LEFT).$date.str_pad($rand, 4, 0, STR_PAD_LEFT).'.xlsx'; $path_file = '../data/upload/file/'.$file_name; //上傳文件目錄指定 move_uploaded_file($uploadfile, $path_file); //文件上傳 $inputFileType = PHPExcel_IOFactory::identify($path_file); $objReader = PHPExcel_IOFactory::createReader($inputFileType); $objReader->setReadDataOnly(true);//只需要添加這個(gè)方法實(shí)現(xiàn)表格數(shù)據(jù)格式轉(zhuǎn)換 $objPHPExcel = $objReader->load($path_file); $sheet_read_arr = array(); $sheet_read_arr["表1"] = array("B","C"); $sheet_read_arr["表2"] = array("B","C"); $sheet_read_arr["表3"] = array("B","C"); $list_aray=array(); foreach ($sheet_read_arr as $key => $val){ $currentSheet = $objPHPExcel->getSheetByName($key); $row_num = $currentSheet->getHighestRow(); for ($i = 6; $i <= $row_num; $i++){ $cell_values = array(); foreach ($val as $cell_val){ $address = $cell_val . $i;// 單元格坐標(biāo) $cell_values[] = $currentSheet->getCell($address)->getFormattedValue(); } $list_aray[]=$cell_values; } }
“phpexcel導(dǎo)入excel處理大數(shù)據(jù)的方法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。