PHP fseek May 12, 2012 Pramod T P It seeks on a file pointer Example <?php $fp = fopen(‘test.txt’, ‘r’); $data = fgets($fp, 2048); fseek($fp, 0); ?>