-
-
Notifications
You must be signed in to change notification settings - Fork 340
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fatal error while trying to load a CSV file from String to an \Iterator #545
Comments
@barchard what is the value returned by |
Sure, here is a snippet from the network request results (below). I am playing around more. I see that:
Sample snippet of CSV:
Thanks |
@barchard thanks for the script. What you are experimenting is expected. This is the same issue as #514 . You are not using PHP The
Any use of To resolve this issue you can use the following methods:
All these methods are explained in the documentation. or simply do as you did in your first example but avoid using the |
Bug Report
I may be holding it wrong, but I imagine we shouldn't throw an exception regardless. I am stuck trying to get a CSV (
string
) to load and parse. The same string works fine inPHPSpreadsheet
. ThanksSummary
Trying to load a CSV file from string as an
\Iterator
Standalone code, or other way to reproduce the problem
Expected result
Return a valid iterator.
Actual result
PHP Fatal Exception.
Checks before submitting
The text was updated successfully, but these errors were encountered: