I’m trying to read and parse a UTF-8 Excel file using the PHPExcelReader but unfortunately this does not work correctly and I receive some ???? Instead of UTF-8 characters. Would you please help me about the instructions about the way to handle this situation? I have used this configuration for my parsing:
$data = new Spreadsheet_Excel_Reader(); $data->setOutputEncoding('CP1251'); $data->setUTFEncoder('mb');
Thanks