This is a discussion on file vs. fgets - performance question within the PHP Language forums, part of the PHP Programming Forums category; I have a large file that I need to put into an array - but I only need the last hundred ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I have a large file that I need to put into an array - but I only need the
last hundred or so lines. The file is approx. 1100 lines total (20k). Is it more efficient to use fgets in a situation like this? I'm wondering if it's quicker to read into the array only the lines I need (fgets), rather than converting the whole file into an array (file). Or is file quicker since I don't need fopen? |
|
|||
|
deko wrote:
> I have a large file that I need to put into an array - but I only need the > last hundred or so lines. The file is approx. 1100 lines total (20k). Is > it more efficient to use fgets in a situation like this? I'm wondering if > it's quicker to read into the array only the lines I need (fgets), rather > than converting the whole file into an array (file). Or is file quicker > since I don't need fopen? > > the usual file handling routines will be used with file() too. the difference is that you won't have to take care of it. maybe you should just try both and benchmark them - i think the fopen-variant with fgets is faster as it is not reading those many lines. reg. s.h. -- "The goal of Computer Science is to build something that will last at least until we've finished building it." -- unknown |