TP5匯入excel到資料庫實用

2021-09-26 00:15:54 字數 793 閱讀 7456

操作步驟:

2、在根目錄index.php定義如下

define('phpexcel_path', __dir__ . '/extend/phpexcel/');

3、html檔案中的寫法

匯入excel到資料庫.xlsx

4、php控制器檔案寫法

//匯入excel到資料庫

public function inserexcel() else

$obj_phpexcel = $objreader->load($file_name, $encode = 'utf-8'); //載入檔案內容,編碼utf-8

$excel_array= $obj_phpexcel->getsheet(0)->toarray(); //轉換為陣列格式

array_shift($excel_array); //刪除第乙個陣列(標題);

$data = ;

if(count($excel_array)>5000)

echo '正在匯入...

'; foreach($excel_array as $k=>$v)

db::name('code')->insertall($data); //批量插入資料

echo '匯入完成

'; $this->success("匯入成功");

}else

}

tp5資料庫操作

查詢 db user where id 1 find db user where status 1 select 新增 新增單條資料db user insert data 新增多條資料db user insertall list 修改 更新資料表中的資料 db user where id 1 upd...

TP5 資料庫基本操作

插入資料 執行成功返回影響資料的條數,執行失敗返回false 新增一條資料 data name wangwu pwd 123456 res db user insert data 新增多條資料 data name ll pwd 1 name zz pwd 2 res db user insert d...

tp5資料庫配置操作

如何鏈結資料庫 有三種方式 資料庫型別 type mysql 伺服器位址 hostname 127.0.0.1 資料庫名 database ceshi 使用者名稱 username root 密碼 password 埠 hostport 2 方法配置 a 使用陣列 db db connect 資料庫...