Re: [PHP] parse text file

2006-07-23 Thread Benjamin Adams
Thanks, fgets works great didn't know the function before. On Mon, 2006-07-24 at 01:56 +0530, Sameer N Ingole wrote: > Joe Wollard wrote: > > Benjamin, > > > > Use the file() function, it will read a file then return each line as > > a new element in an array. > > http://php.net/file > And if fil

Re: [PHP] parse text file

2006-07-23 Thread Stut
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Joe Wollard wrote: > Use the file() function, it will read a file then return each line as > a new element in an array. > http://php.net/file This will not read the file "one line at a time". Try http://php.net/fgets. - -Stut > On 7/23/06, Benjamin

Re: [PHP] parse text file

2006-07-23 Thread Sameer N Ingole
Joe Wollard wrote: Benjamin, Use the file() function, it will read a file then return each line as a new element in an array. http://php.net/file And if file is big (biiig) then you want http://php.net/fgets -- Sameer N. Ingole http://weblogic.noroot.org/ --- Better to light one candle tha

Re: [PHP] parse text file

2006-07-23 Thread Joe Wollard
Benjamin, Use the file() function, it will read a file then return each line as a new element in an array. http://php.net/file - Joe On 7/23/06, Benjamin Adams <[EMAIL PROTECTED]> wrote: how would I read a file one line at a time: something like that, I'm cofused on if I use fread, somethin

[PHP] parse text file

2006-07-23 Thread Benjamin Adams
how would I read a file one line at a time: something like that, I'm cofused on if I use fread, something which will do one line at a time? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php