1.下载phpoffice组件
composer require phpoffice/phpexcel
2.下载成功后使用phpexcel
3.遍历插入数据库
public function create()
{
$file = request()->file('file');
if (empty($file)) {
//返回您还没有上传文件!!
return 3;
}
$excel = new PHPExcel();
$info = $file->validate(['ext'=>'xlsx,xls,csv'])->rule('uniqid')->move(ROOT_PATH.'public'.DS.'uploads' . DS . 'excel');
if(!$info){
//判断传过来的文件类型
return 5;
}else{
$exclePath = $info->getSaveName(); //获取文件名
$file_name = ROOT_PATH . 'public' . DS .'uploads'.DS