php表格操作

goer ... 2022-01-15 Study
  • Thinkphp
  • Php
  • Hack
大约 3 分钟

表格操作

[toc]

# PHPExcel

php 操作excel数据

需要有点点thinkphp基础哟

来自这位老哥 (opens new window)

# 表格导入

把表格导入到数据和在从数据库查出来

# 1. 准备

  • 下载PHPExcel类库PHPExcel (opens new window)值需要Classes文件就可以了

  • 可以下载Bootstrap的css文件和js文件

  • 准备一个Excel表格

# 2. 思路

命名Classes文件PHPExcel放到thinkphp 的 vendor目录下

bootstrap官网复制一个简单的表单。

表格上传到服务器 --> 读取表格数据保存到数组 --> 数组数据添加到数据库

# 3.代码实现

id 姓名 年龄 性别 爱好
1 a 1 a a
2 b 2 b b
3 c 3 c c
// 前端
<!-- action 提交index控制器的 exel方法  -->
<form action="{:url('index/exel')}" method="post" enctype="multipart/form-data">
    <label for="exelFile">导入表格</label>
    <input type="file" name="exelF" id="exelFile"> 
    <br>
    <input type="submit" value="提交">
</form>
1
2
3
4
5
6
7
8

后台

public function exel()
    /**
     * 获取表格数据 导入到数据库
     */
{
    // 判断是否是post表单数据
    if (request()->isPost()) {
        
        //接收上传文件
        $file = request()->file('exelF');
        //文件移动到目录下
        $info = $file->move(ROOT_PATH . 'public' . DS . 'uploads' . DS . 'execl');
        if ($info) {
            // 获取到文件名
            $path = ROOT_PATH . 'public' . DS . 'uploads' . DS . 'execl/' . $info->getSaveName();
            // 加载phpexecel类
            vendor('PHPExcel.PHPExcel');

            //实例化PHPExcel类(注意:实例化的时候前面需要加'\')
            // $objReader=new \PHPExcel_Reader_Excel5();
            // $objPHPExcel = $objReader->load($path,$encode='utf-8');//获取excel文件

            //上传时还要区分 xls、xlsx、csv
            if (!file_exists($path)) {
                die('no file!');
            }
            $extension = strtolower(pathinfo($path, PATHINFO_EXTENSION));
            if ($extension == 'xlsx') {
                $objReader = new \PHPExcel_Reader_Excel2007();
                $objExcel = $objReader->load($path, $encode = 'utf-8');
            } else if ($extension == 'xls') {
                $objReader = new \PHPExcel_Reader_Excel5();
                $objExcel = $objReader->load($path, $encode = 'utf-8');
            } else if ($extension == 'csv') {
                $PHPReader = new \PHPExcel_Reader_CSV();
                //载入文件
                $objExcel = $PHPReader->load($path, $encode = 'utf-8');
            }

            // 激活当前表
            $sheet = $objExcel->getSheet(0);

            $hightRow = $sheet->getHighestRow(); //获取总行
            $hightColumn = $sheet->getHighestColumn(); //获取总列
            $a = 0;
            //*为什么$i=2?  第一行是标题 第二行开始,才是我们要的数据
            for ($i = 2; $i <= $hightRow; $i++) {
                $data[$a]['name'] = $objExcel->getActiveSheet()->getCell("A" . $i)->getValue();
                $data[$a]['age'] = $objExcel->getActiveSheet()->getCell("B" . $i)->getValue();
                $data[$a]['sex'] = $objExcel->getActiveSheet()->getCell("C" . $i)->getValue();
                $data[$a]['love'] = $objExcel->getActiveSheet()->getCell("D" . $i)->getValue();
                // a++ 根据表格自己决定有多少行
                $a++;
            }

            // halt($data); //打印一下

            //写入到数据库
            $res = Db::name('student')->insertAll($data); //insertAll()获取到所有数据
            if ($res) {
                $this->success('yes');
            } else {
                $this->error('no');
            }
        }
    } else {
        // 上传失败信息
        $this->error($file->getError());
    }
}
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70

# 导出

将数据库数据导出到excel表格

// 前端
<!-- 提交到 控制器方法 -->
<button type="button" onclick="window.open('{:url(\'index/export\')}')">导出表格</button>
// 显示表格
<table class="table">
    <thead class="thead-dark">
        <tr align="center">
            <th scope="col">序号</th>
            <th scope="col">学生表</th>
            <th scope="col">姓名</th>
            <th scope="col">年龄</th>
            <th scope="col">爱好</th>
        </tr>
    </thead>
    <tbody>
        <!-- 循环数组 -->
        {foreach $sumdata as $key=>$vo}
        <tr align="center">
            <th scope="row">{$key+1}</th>
            <td>{$vo.name}</td>
            <td>{$vo.age}</td>
            <td>{$vo.sex}</td>
            <td>{$vo.love}</td>
        </tr>
        {/foreach}
    </tbody>
</table>
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

后台代码

    public function export()
    {
        //1.从数据库中取出数据
        $list = Db::name('student')->select();
        //2.加载PHPExcle类库
        vendor('PHPExcel.PHPExcel');
        //3.实例化PHPExcel类
        $objPHPExcel = new \PHPExcel();
        //4.激活当前的sheet表
        $objPHPExcel->setActiveSheetIndex(0);
        //5.设置表格头(即excel表格的第一行)
        $objPHPExcel->setActiveSheetIndex(0)
            ->setCellValue('A1', 'ID')
            ->setCellValue('B1', '姓名')
            ->setCellValue('C1', '年龄')
            ->setCellValue('D1', '性别')
            ->setCellValue('E1', '爱好');
        //设置F列水平居中
        $objPHPExcel->setActiveSheetIndex(0)->getStyle('F')->getAlignment()
            ->setHorizontal(\PHPExcel_Style_Alignment::HORIZONTAL_CENTER);
        //设置单元格宽度
        $objPHPExcel->setActiveSheetIndex(0)->getColumnDimension('D')->setWidth(15);
        $objPHPExcel->setActiveSheetIndex(0)->getColumnDimension('E')->setWidth(30);
        //6.循环刚取出来的数组,将数据逐一添加到excel表格。
        for ($i = 0; $i < count($list); $i++) {
            $objPHPExcel->getActiveSheet()->setCellValue('A' . ($i + 2), $list[$i]['id']); //添加ID
            $objPHPExcel->getActiveSheet()->setCellValue('B' . ($i + 2), $list[$i]['name']); //添加姓名
            $objPHPExcel->getActiveSheet()->setCellValue('C' . ($i + 2), $list[$i]['age']); //添加年龄
            $objPHPExcel->getActiveSheet()->setCellValue('D' . ($i + 2), $list[$i]['sex']); //添加性别
            $objPHPExcel->getActiveSheet()->setCellValue('E' . ($i + 2), $list[$i]['love']); //添加爱好
        }
        //7.设置保存的Excel表格名称
        $filename = '学生信息' . date('ymd', time()) . '.xls';
        //8.设置当前激活的sheet表格名称;
        $objPHPExcel->getActiveSheet()->setTitle('学生信息');
        //9.设置浏览器窗口下载表格
        header("Content-Type: application/force-download");
        header("Content-Type: application/octet-stream");
        header("Content-Type: application/download");
        header('Content-Disposition:inline;filename="' . $filename . '"');
        //生成excel文件
        $objWriter = \PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
        //下载文件在浏览器窗口
        $objWriter->save('php://output');
        exit;
    }
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
43
44
45
46

很实用呀,小伙伴们 赶紧学起来