I'm trying to import a Excel file to my PHP application with PHPExcel but It cannot work correctly with UTF-8 data. This is my data
Độc quyền
and this is what I retrieve:
Äá»™c quyá»n
This is my code:
$cell = $objWorksheet->getCellByColumnAndRow($col, $row);
$value = $cell->getCalculatedValue();
$arraydata[$row-2][$col]=$value;
Thanks for your help. :)