How to export csv file with shift-jis encoding in laravel?
问题 I am using laravel-excel to export csv file. To export, the code is like below, return Excel::download(new Export(results,$header), "test.csv"); And the Export.php file is like, namespace App\AllClass; use Maatwebsite\Excel\Concerns\FromCollection; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\WithHeadings; class Export implements FromCollection,WithHeadings { private $myArray; private $header; public function __construct($myArray,$header){ $this->myArray =