Lines Matching refs:fseek

24 echo 'fseek($fp, 1)';var_dump(fseek($fp, 1));
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));
30 echo 'fseek($fp, -1, SEEK_END)';var_dump(fseek($fp, -1, SEEK_END));
32 echo 'fseek($fp, -8, SEEK_END)';var_dump(fseek($fp, -8, SEEK_END));
34 echo 'fseek($fp, -7, SEEK_END)';var_dump(fseek($fp, -7, SEEK_END));
36 echo 'fseek($fp, 0, SEEK_END)';var_dump(fseek($fp, 0, SEEK_END));
38 echo 'fseek($fp, 1, SEEK_END)';var_dump(fseek($fp, 1, SEEK_END));
40 echo 'fseek($fp, -8, SEEK_END)';var_dump(fseek($fp, -8, SEEK_END));
42 echo 'fseek($fp, 6)';var_dump(fseek($fp, 6));
44 echo 'fseek($fp, 8)';var_dump(fseek($fp, 8));
46 echo 'fseek($fp, -1)';var_dump(fseek($fp, -1));
49 fseek($fp, 4);
51 echo 'fseek($fp, -5, SEEK_CUR)';var_dump(fseek($fp, -5, SEEK_CUR));
53 fseek($fp, 4);
55 echo 'fseek($fp, 5, SEEK_CUR)';var_dump(fseek($fp, 5, SEEK_CUR));
57 fseek($fp, 4);
59 echo 'fseek($fp, -4, SEEK_CUR)';var_dump(fseek($fp, -4, SEEK_CUR));
61 fseek($fp, 4);
63 echo 'fseek($fp, 3, SEEK_CUR)';var_dump(fseek($fp, 3, SEEK_CUR));
74 fseek($fp, 1)int(0)
76 fseek($fp, 1, SEEK_CUR)int(0)
78 fseek($fp, -1, SEEK_CUR)int(0)
80 fseek($fp, -1, SEEK_END)int(0)
82 fseek($fp, -8, SEEK_END)int(-1)
84 fseek($fp, -7, SEEK_END)int(0)
86 fseek($fp, 0, SEEK_END)int(0)
88 fseek($fp, 1, SEEK_END)int(-1)
90 fseek($fp, -8, SEEK_END)int(-1)
92 fseek($fp, 6)int(0)
94 fseek($fp, 8)int(-1)
96 fseek($fp, -1)int(-1)
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)