今天就跟大家聊聊有關使用php怎么上傳excel表格并獲取數據,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
創新互聯基于分布式IDC數據中心構建的平臺為眾多戶提供成都服務器托管 四川大帶寬租用 成都機柜租用 成都服務器租用。一:首先是html部分
<html> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <input type="file" name="file" id="file" /> <input type="submit" name="submit" value="Submit" /> </form> </body> </html>
二:就是去接收和處理上傳的文件了。php部分
//文件存放的路徑 $save_path = "/upload/"; //文件存放的文件夾 $save_files = $this->geturl(); 這個是以年月日新建的文件夾,僅供參考。 //先檢查當前文件夾是否存在,如不存在,創建文件夾 function geturl() { $year = date('Y'); $month= date('m'); $day= date('d'); $str = $year.$month.$day; if(strtoupper(substr(PHP_OS,0,3))=='WIN'){ $path = getcwd() . "/upload/".$str; }else{ $path = "/mnt/erp/".$str; } if(!file_exists($path))//判斷文件夾是否存在 { mkdir($path); } //return $path."/"; return $str."/"; } //這個是上傳文件到需要保存的位置, if (!@move_uploaded_file($_FILES[$upload_name]["tmp_name"], $save_path.$file_path)) { $error = "error|上傳文件錯誤."; exit(0); }
下面開始獲取你上傳的excel數據了
//獲取上傳表格的數據 $file_name = $save_path.$file_path; //獲取上傳文件的地址名稱 require_once APPPATH . 'views/IDC/config/PHPExcel.php'; require_once APPPATH . 'views/IDC/config/PHPExcel/IOFactory.php'; require_once APPPATH . 'views/IDC/config/PHPExcel/Cell.php'; $objReader = PHPExcel_IOFactory::createReader('excel2007'); //建立reader對象 $objPHPExcel = $objReader->load($file_name); $sheet = $objPHPExcel->getSheet(); $highestRow = $sheet->getHighestDataRow(); // 取得總行數 $highestColumn_num = PHPExcel_Cell::columnIndexFromString($sheet->getHighestDataColumn()); //列數 //$columns = PHPExcel_Cell::getColumn($highestColumn_num); $columns = array('A','B','C','D','E','F','G'); $arr_result = array(); $dealer_element = array(); for ($j = 2; $j <= $highestRow; $j++) { for ($k = 0; $k < count($columns); $k++) { //讀取單元格 $value = $objPHPExcel->getActiveSheet()->getCell($columns[$k] . $j)->getValue();//這個就是獲取每個單元格的值 $value = trim($value); if (empty($value)) { $value = NULL; } $dealer_element[$k] = $value; //這里可以根據要求,做一些數據的驗證 } $arr_result[$j] = $dealer_element; } echo json_encode($arr_result);
看完上述內容,你們對使用php怎么上傳excel表格并獲取數據有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注創新互聯行業資訊頻道,感謝大家的支持。
網站題目:使用php怎么上傳excel表格并獲取數據-創新互聯
URL標題:http://m.newbst.com/article4/dpeoie.html
成都網站建設公司_創新互聯,為您提供電子商務、網頁設計公司、網站排名、App開發、移動網站建設、外貿網站建設
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯