1.首先要下载phpexcel放到vendor文件夹下,我的路径是:项目/vendor/phpexcel/,把下载的phpexcel文件放在这里
2.前端代码
1
2
3
4
5
6
7
8
9
10
11
12
|
<!doctype html>
<html>
<head>
<title>批量导入数据</title>
</head>
<body>
<form action= "{:url('/index/index/importexcel')}" method= "post" enctype= "multipart/form-data" >
<input type= "file" name= "myfile" ><br/>
<input type= "submit" value= "批量的导入" >
</form>
</body>
</html>
|
3.后台代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/**
* 导入表格数据
* 先把文件上传到服务器,然后再读取数据存到数据库
*/
public function importexcel(){
header( "content-type:text/html;charset=utf-8" );
//上传excel文件
$file = request()->file( 'myfile' );
//移到/public/uploads/excel/下
$info = $file ->move(root_path. 'public' .ds. 'uploads' .ds. 'excel' );
//上传文件成功
if ( $info ) {
//引入phpexcel类
vendor( 'phpexcel.phpexcel.reader.excel5' );
//获取上传后的文件名
$filename = $info ->getsavename();
//文件路径
$filepath = 'public/uploads/excel/' . $filename ;
//实例化phpexcel类
$phpreader = new phpexcel_reader_excel5();
//读取excel文件
$objphpexcel = $phpreader ->load( $filepath );
//读取excel文件中的第一个工作表
$sheet = $objphpexcel ->getsheet(0);
$allrow = $sheet ->gethighestrow(); //取得总行数
//$allcolumn = $sheet->gethighestcolumn(); //取得总列数
//从第二行开始插入,第一行是列名
for ( $j =2; $j <= $allrow ; $j ++) {
$data [ 'name' ] = $objphpexcel ->getactivesheet()->getcell( "a" . $j )->getvalue();
$data [ 'tel' ] = $objphpexcel ->getactivesheet()->getcell( "b" . $j )->getvalue();
$data [ 'addr' ] = $objphpexcel ->getactivesheet()->getcell( "c" . $j )->getvalue();
$last_id = db::table( 'users' )->insertgetid( $data ); //保存数据,并返回主键id
if ( $last_id ) {
echo "第" . $j . "行导入成功,users表第:" . $last_id . "条!<br/>" ;
} else {
echo "第" . $j . "行导入失败!<br/>" ;
}
}
} else {
echo "上传文件失败!" ;
}
}
|
输出结果:
注意:
引入第三方类库使用vendor();是按照命名空间的形式。底层代码会把“ . ”自动替换成" / ",所以使用“ / ”时要用“ . ”代替;
以上代码可以直接复制使用,但是数据库相关信息要改成你自己的!
总结
以上所述是小编给大家介绍的thinkphp5+phpexcel实现批量上传表格数据功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会
原文链接:http://www.cnblogs.com/zxf100/archive/2017/11/28/7908659.html