Open sirber opened 7 years ago
Have a similar issue. e.g. when ->setTitle("Reporte de Categorías"), in the exported file the property is stored as "Reporte de CategorÃas". Did you manage to solve the problem?
->setTitle(utf8_encode("Reporte de Categorías"));
@sirber Unfortunately utf8_encode
did not work, mb_convert_encoding
and incov
neither.
I recently found a solution that works for me: https://stackoverflow.com/a/31973453/3255692
$this->xls->setActiveSheetIndex(0); $sheet = $this->xls->getActiveSheet(); // works $sheet->setTitle('Ventes par region'); // fails if my page is in Windows-1252 charset $sheet->setTitle('Ventes par région');