fseek($fh,26); // 26 bytes after the beginning of the file
fseek($fh,26,SEEK_SET); // 26 bytes after the beginning of the file
fseek($fh,-39,SEEK_END); // 39 bytes before the end of the file
fseek($fh,10,SEEK_CUR); // 10 bytes ahead of the current position
fseek($fh,0); // beginning of the file