Laravel maatwebsite/excel导出用法

环境要求

PHP: ^7.4 (maatwebsite安装的3.1版本的,php7.3以下报" syntax error, unexpected '=' in file"--vendor\phpoffice\phpspreadsheet\src\PhpSpreadsheet\Cell\Cell.php on line 232)
Laravel: ^5.5

安装方式

composer require maatwebsite/excel 
//若不成功
composer require maatwebsite/excel --ignore-platform-reqs

配置

1、使用命令发布配置文件,会在config文件夹下生成excel.php
(看个人需求,一般情况下无需该文件或者无需配置)

php artisan vendor:publish --provider="Maatwebsite\Excel\ExcelServiceProvider" --tag=config

2、导出默认保存地址为\storage\app,如需修改到/condig/filesystems.php文件下的disks添加

'excel' => [
            'driver' => 'local',
            'root' => public_path('excel'),
        ],
image.png

3、在 config/app.php 中注册服务提供者到 providers 数组:

'providers' => [
  ...
  Maatwebsite\Excel\ExcelServiceProvider::class,
]

4、在 config/app.php 中注册到 aliases 数组:

'aliases' => [
  ...
  'Excel' => Maatwebsite\Excel\Facades\Excel::class,
]

5、创建一个导出类

php artisan make:export ExcelExport
image.png

导出类代码

注: 此处只做了导出及宽带自适应,如需修改其它excel样式需引入对应的类

row = $row;
        $this->data = $data;
    }

    /**
     * @return object
     */
    public function collection()
    {
        $row = $this->row;
        $data = $this->data;

        //设置表头
        $key_arr = [];
        foreach ($row[0] as $key => $value) {
            $key_arr[] = $key;
        }

        //输入数据
        foreach ($data as $key => &$value) {
            $js = [];
            for ($i=0; $i < count($key_arr); $i++) {
                $js = array_merge($js,[ $key_arr[$i] => $value[ $key_arr[$i] ] ?? '' ]);
            }
            array_push($row, $js);
            unset($value);
        }
        return collect($row);
    }
}

用法

//需引入的文件
use Maatwebsite\Excel\Facades\Excel;
use App\Exports\ExcelExport;

/*
* 数据导出
* @param $data array 需要导出的数据
*/
public function dataExport($data){
     //excel表头设置
      $headArr[] = array(
            'id'=>'ID',
            'code'=>'编号',
            'name'=>'名称',
        );

    //数据配置
    $arr = [];
    foreach ($data as $k => $v) {
         $arr[$k]['id'] = $v['id'];
         $arr[$k]['code'] = ' '.$v['code'];//前面加空格避免形成科学记数法,若道友有更好的方法请留言一二,不胜感激
         $arr[$k]['name'] = $v['name'];
     }

    //文件名称
    $fileName = 'data_'.date('YmdHis') . rand(10, 99) . '.xlsx';

    //将生成的Excel保存到本地,在服务器端使用时注意要给文件夹权限
    if (! Excel::store(new ExcelExport($headArr, $device_arr), $fileName, 'excel')) return false;//成功返回true

    return ['download_url' => asset('excel/' . $fileName, env('REDIRECT_HTTPS'))];//REDIRECT_HTTPS=1是https,0是http
}

文档参考来源:
http://www.edbiji.com/doccenter/showdoc/209/nav/3722.html
https://www.cnblogs.com/iwillrich/p/15746162.html
http://www.manongjc.com/detail/59-oxwehorsoeiazpd.html

你可能感兴趣的:(Laravel maatwebsite/excel导出用法)