ijoenk19 / php-excel-reader

Automatically exported from code.google.com/p/php-excel-reader
0 stars 0 forks source link

iconv detected an illegal character in input string in xls column when using email as input #203

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
When parsing a excel column that contain data as like, some@mail.com.

then it shows 500 error with summary output.

but it solved using ,

function 
Spreadsheet_Excel_Reader($file='',$store_extended_info=true,$outputEncoding='') 
{
        $this->_ole =& new OLERead();
        $this->setUTFEncoder('UTF-8'); // newly added line

Original issue reported on code.google.com by sivanth...@gmail.com on 30 May 2015 at 7:01