The best way to read larges files in PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:22:39Z http://stackoverflow.com/feeds/question/265102 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/265102/the-best-way-to-read-larges-files-in-php 1 The best way to read larges files in PHP? Cédric Girard 2008-11-05T13:17:39Z 2008-11-06T17:37:30Z <p>Hi, </p> <p>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.</p> <p>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?</p> <p>Thanks Cedric</p> http://stackoverflow.com/questions/265102/the-best-way-to-read-larges-files-in-php/265111#265111 1 Answer by Greg for The best way to read larges files in PHP? Greg 2008-11-05T13:21:27Z 2008-11-05T13:21:27Z <p><a href="http://www.php.net/fgets" rel="nofollow"><code>fgets()</code></a> should be perfectly fine for your needs. Even <a href="http://www.php.ney/file" rel="nofollow"><code>file()</code></a> should be ok - 20mb isn't very big unless you're doing this a lot of times concurrently.</p> <p>Don't forget you can tune <code>fgets()</code> with its second parameter.</p> http://stackoverflow.com/questions/265102/the-best-way-to-read-larges-files-in-php/265114#265114 7 Answer by gnud for The best way to read larges files in PHP? gnud 2008-11-05T13:23:16Z 2008-11-05T13:23:16Z <p>You ought to be using <a href="http://www.php.net/fgetcsv" rel="nofollow">fgetcsv()</a> if possible.</p> <p>Otherwise, there is always fgets().</p> http://stackoverflow.com/questions/265102/the-best-way-to-read-larges-files-in-php/265132#265132 0 Answer by Treb for The best way to read larges files in PHP? Treb 2008-11-05T13:28:03Z 2008-11-06T17:37:30Z <p>You should have a look at <code>fgetcsv()</code>, it automatically parses the coma seperated line into an array. </p> <p>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.</p> http://stackoverflow.com/questions/265102/the-best-way-to-read-larges-files-in-php/265421#265421 1 Answer by Ciaran McNulty for The best way to read larges files in PHP? Ciaran McNulty 2008-11-05T15:10:59Z 2008-11-05T15:10:59Z <p>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.</p> <p>If you want to use CSVs then fgetcsv will return results in a slightly more sensible format.</p>