fseek

KenHorse

Member
I want to read a binary file, 128 bytes at time, perform some other code and come back to the file and pick up at the next 128 bytes, continuing until feof

Will this do it?

Code:
fseek($file,1,SEEK_CUR);
 
Back
Top