kenan77 / php-excel-reader

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

encoding problem truncates text string #102

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,
I am trying to read the attached file but the text string in B2 cell is 
truncated.

This is my code:

   $data = new Spreadsheet_Excel_Reader("withproblem.xls");

        for ($i = 2; $i <= $data->sheets[0]['numRows']; $i++)
        {
                $arrayTemp = $data->sheets[0]['cells'][$i];
                var_dump($arrayTemp);
        }

Have you any idea?

thank you,
Sandro

Original issue reported on code.google.com by sandro.t...@gmail.com on 14 Dec 2010 at 2:31

Attachments:

GoogleCodeExporter commented 8 years ago
Sorry,
I am trying with an old version, with the last version the problem seems 
resolved.

thank you,
Sandro

Original comment by sandro.t...@gmail.com on 14 Dec 2010 at 2:38