You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
try
{
$fileName = 'tmp/test.csv';
$fileType = PHPExcel_IOFactory::identify($fileName);
$excelReader = PHPExcel_IOFactory::createReader($fileType);
$excelReader->setSheetIndex(0);
$excelReader->setDelimiter(' ');
$excelFile = $excelReader->load($fileName);
var_dump($excelFile);
}
catch (Exception $e) {
die("Error loading file: ".$e->getMessage()."<br />\n");
}
What is the expected output? What do you see instead?
I am expecting this code to pick up chinese String in B1 (see attached file
test.csv)
Please provide any additional information below.
File test.csv has been created by using notepad saving file using encoding UTF8.
Original issue reported on code.google.com by [email protected] on 27 Jan 2012 at 12:29
Original issue reported on code.google.com by
[email protected]
on 27 Jan 2012 at 12:29Attachments:
The text was updated successfully, but these errors were encountered: