$name = iconv('UTF-8', 'GBK', '成员信息'); Excel::create($name,function($excel) use ($cellData){ $excel->sheet('score', function($sheet) use ($cellData){ $sheet->rows($cellData); })->store('xls')->export('xls'); public function import(){ $filePath = 'storage/exports/'.iconv('UTF-8', 'GBK', '成员信息').'.xls'; Excel::load($filePath, function($reader) { $data = $reader->all(); dump($data); exit;