That I know, calling fgets() 3 times would put the file pointer at the start
of the 4th. line.  However, fread() "won't let you decide the position from
which the acquisition begins.." according to my help book.  Perhaps the
filepointer is in the right spot, perhaps not.  fread() requires an fseak()
file pointer to offset the start of the file to where you want to begin
reading.
I hope this helps.
hugh
----- Original Message -----
From: Navid Yar <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, August 30, 2001 1:50 PM
Subject: RE: [PHP] Re: line by line


> When using fgets() 3 times, does the pointer inside the file change
> positions?
>
> Navid Yar
>
> -----Original Message-----
> From: Richard Lynch [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, August 30, 2001 4:57 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Re: line by line
>
>
> http://php.net/fopen
> http://php.net/fgets
>
> Call fopen.
> Call fgets 3 times.
> Call fread($file, 1000000) to get the rest.
>
> --
> WARNING [EMAIL PROTECTED] address is an endangered species -- Use
> [EMAIL PROTECTED]
> Wanna help me out?  Like Music?  Buy a CD: http://l-i-e.com/artists.htm
> Volunteer a little time: http://chatmusic.com/volunteer.htm
> ----- Original Message -----
> From: Gary <[EMAIL PROTECTED]>
> Newsgroups: php.general
> To: <[EMAIL PROTECTED]>
> Sent: Monday, August 27, 2001 4:10 PM
> Subject: line by line
>
>
> > Hi All,
> >   I need to get info from a flat file line by line. What I need to do is
> > get 3 separate lines and then a paragraph. Can someone point me to a
> > tutorial or info on the subject.
> >
> > TIA
> > Gary
> >
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to