vote up 1 vote down star

Hi,

I have to read CSV files line by line wich can be 10 to 20 Meg. file() is useless ;-) and I have to find the quickiest way.

I have try with fgets(), wich run fine, but I don't know if it read a small block each time I call it, or if it cache a bigger one and optimize file I/O. Do I have to try the fread() way, parsing EOL by myself?

Thanks Cedric

flag

4 Answers

vote up 7 vote down check

You ought to be using fgetcsv() if possible.

Otherwise, there is always fgets().

link|flag
vote up 1 vote down

stream_get_line is apparently more efficient than fgets for large files. If you specify a sensible maximum length for the read I don't see any reason why PHP would have to 'read ahead' to read a line in, as you seem to be worrying.

If you want to use CSVs then fgetcsv will return results in a slightly more sensible format.

link|flag
vote up 0 vote down

You should have a look at fgetcsv(), it automatically parses the coma seperated line into an array.

As for the runtime efficiency, I have no idea. You will have to run a quick test, preferably with a file of the size you are expecting to handle later on. But I would be surprised if the fget??? and fput??? functions were not I/O optimised.

link|flag
vote up 1 vote down

fgets() should be perfectly fine for your needs. Even file() should be ok - 20mb isn't very big unless you're doing this a lot of times concurrently.

Don't forget you can tune fgets() with its second parameter.

link|flag
A default PHP setup allows for a maximum memory usage of 8 Mb per process. In that case 20Mb is big. (I know you can change that, but there are obvious reasons as to why you wouldn't want to). – Jasper Bekkers Nov 5 '08 at 13:47
Jasper Bekkers is right, and file() use too much memory for my needs. – Cédric Girard Nov 5 '08 at 14:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.