public function importexcel($file)
}$phpexcel = $phpreader->load($file); //載入excel物件
$sheet = $phpexcel->getsheet(0); //獲取指定的sheet表
$rows = $sheet->gethighestrow();//行數
$cols = $sheet->gethighestcolumn();//列數
$data = array();
for ($i = 1; $i <= $rows; $i++)}}
return $data;
}
【第三步】】新建乙個控制器:import.php,import控制器中新建乙個方法importteacher()(這裡的**,請按照實際需求更改),在該方法中呼叫base.php中的importexcel()方法,如下
//匯入老師資訊
public function importteacher()
//呼叫匯入excel方法
$data = $this->importexcel($file);
$sql = ;
for ($i = 1; $i < count($data); $i++)
//寫入資料庫
db::name('auth')->insertall($sql);
}
PHPExcel類匯入Excel用法
if post leadexcel true 匯入excel檔案 function uploadfile file,filetempname echo str die explode 函式把字串分割為陣列。strs explode str sql insert into te 1 2 3 4 5 v...
phpexcel匯入excel處理大資料
header content type text html charset utf 8 設定頁面編碼 require once phpexcel.class.php 引入檔案 require once phpexcel iofactory.php 引入檔案 require once phpexcel...
phpexcel匯入excel處理大資料
header content type text html charset utf 8 設定頁面編碼 require once phpexcel.class.php 引入檔案 require once phpexcel iofactory.php 引入檔案 require once phpexcel...