News Feed
Jobs Feed
Sections




Recent Jobs

News Archive
PHPro.org:
Read Line From File (stream_get_line)
April 23, 2009 @ 09:36:51

The PHPro.org website has a quick new tutorial about a method (using streams) to get the information from a certain line of a file.

Reading files in PHP can be a tricky business if not handled correctly. Most often when confronted with reading a line from, the nearest tool to hand is the file() function. The problem with using the file() function is that it reads the whole file into an array, and thus, into memory [...] A better, and more efficient way is to loop through the file stream using the stream_get_line() function. Care still needs to be taken to clear the buffer on each iteration, or the same problem could potentially arise as with the file() method.

The code calls fopen on the file and, while it's not the end of the file, uses the stream_get_line function to grab things a line at a time. This saves you from having to read in the entire file (like with a file_get_contents or file - especially good for large files.

0 comments voice your opinion now!
stream tutorial file line read streamgetline



Similar Posts

PHPIt.net: Creating a SECURE file manager with PHP

DevShed: Tracking Website Statistics with PHP

PHPBuilder.com: BitMasks: Emulate Unix Permissions in PHP (Quickly)

Symfony Blog: The "Practical symfony" book is now also available for Doctrine

DevShed: Completing a Search Engine with MySQL and PHP 5


Community Events









Don't see your event here?
Let us know!


conference microsoft codeigniter podcast release extension drupal facebook doctrine symfony performance feature windows zendframework sqlserver developer job wordpress framework opinion

All content copyright, 2010 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework