Lines Matching refs:SEEK_CUR
26 echo 'fseek($fp, 1, SEEK_CUR)';var_dump(fseek($fp, 1, SEEK_CUR));
28 echo 'fseek($fp, -1, SEEK_CUR)';var_dump(fseek($fp, -1, SEEK_CUR));
51 echo 'fseek($fp, -5, SEEK_CUR)';var_dump(fseek($fp, -5, SEEK_CUR));
55 echo 'fseek($fp, 5, SEEK_CUR)';var_dump(fseek($fp, 5, SEEK_CUR));
59 echo 'fseek($fp, -4, SEEK_CUR)';var_dump(fseek($fp, -4, SEEK_CUR));
63 echo 'fseek($fp, 3, SEEK_CUR)';var_dump(fseek($fp, 3, SEEK_CUR));
76 fseek($fp, 1, SEEK_CUR)int(0)
78 fseek($fp, -1, SEEK_CUR)int(0)
100 fseek($fp, -5, SEEK_CUR)int(-1)
103 fseek($fp, 5, SEEK_CUR)int(-1)
106 fseek($fp, -4, SEEK_CUR)int(0)
109 fseek($fp, 3, SEEK_CUR)int(0)