ivan-berezhnov / php-excel-reader

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

non-ASCII characters #19

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
there is problem to show non ASCII characters (e.g.: ľščťžý..)

What is the expected output? What do you see instead?
showed: ľš�ťžýáíéúäô�
expected: ľščťžýáíéúäôň

Please provide any additional information below.
correction - excel_reader2.php (line 635):
$val = htmlentities($val, ENT_NOQUOTES, 'UTF-8'); 

Original issue reported on code.google.com by toss...@gmail.com on 28 Apr 2009 at 9:14

GoogleCodeExporter commented 9 years ago
sorry, it's same issue as issue#8.
Solution for charset=windows-1250
$data = new Spreadsheet_Excel_Reader($xls_file,1,'cp1250');

Original comment by toss...@gmail.com on 24 May 2009 at 1:31

GoogleCodeExporter commented 9 years ago
I think my patch in #31 should cover this issue as well.

Original comment by her...@ozuzo.net on 11 Jun 2009 at 8:08