This repository has been archived by the owner on Jan 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Bug in file PHPExcel/Reader/CSV.php #879
Comments
In what way does it misread it? What is the separator defined as in your file? What is it being set to? |
If a defined separator line is
then
should read 1 character from offset 4, which should be |
Not defined separator in file :) |
Then the problem isn't with the line that reads |
Perhaps more correctly be so? |
MarkBaker
referenced
this issue
Apr 14, 2016
MarkBaker
pushed a commit
that referenced
this issue
Apr 14, 2016
Code logic identifying a defined separator when no separator is explicitly defined Case-insensitive check when separator is explicitly defined
MarkBaker
pushed a commit
that referenced
this issue
Apr 14, 2016
Code logic identifying a defined separator when no separator is explicitly defined Case-insensitive check when separator is explicitly defined
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This line redefines the delimiter and the file is not read correctly
protected function checkSeparator()
{
...
$this->delimiter = substr($line, 4, 1); // line 174
}
The text was updated successfully, but these errors were encountered: