Lines Matching refs:fseek
25 echo 'fseek($fp, 1)';var_dump(fseek($fp, 1));
27 echo 'fseek($fp, 1, SEEK_CUR)';var_dump(fseek($fp, 1, SEEK_CUR));
29 echo 'fseek($fp, -1, SEEK_CUR)';var_dump(fseek($fp, -1, SEEK_CUR));
31 echo 'fseek($fp, -1, SEEK_END)';var_dump(fseek($fp, -1, SEEK_END));
33 echo 'fseek($fp, -8, SEEK_END)';var_dump(fseek($fp, -8, SEEK_END));
35 echo 'fseek($fp, -7, SEEK_END)';var_dump(fseek($fp, -7, SEEK_END));
37 echo 'fseek($fp, 0, SEEK_END)';var_dump(fseek($fp, 0, SEEK_END));
39 echo 'fseek($fp, 1, SEEK_END)';var_dump(fseek($fp, 1, SEEK_END));
41 echo 'fseek($fp, -8, SEEK_END)';var_dump(fseek($fp, -8, SEEK_END));
43 echo 'fseek($fp, 6)';var_dump(fseek($fp, 6));
45 echo 'fseek($fp, 8)';var_dump(fseek($fp, 8));
47 echo 'fseek($fp, -1)';var_dump(fseek($fp, -1));
50 fseek($fp, 4);
52 echo 'fseek($fp, -5, SEEK_CUR)';var_dump(fseek($fp, -5, SEEK_CUR));
54 fseek($fp, 4);
56 echo 'fseek($fp, 5, SEEK_CUR)';var_dump(fseek($fp, 5, SEEK_CUR));
58 fseek($fp, 4);
60 echo 'fseek($fp, -4, SEEK_CUR)';var_dump(fseek($fp, -4, SEEK_CUR));
62 fseek($fp, 4);
64 echo 'fseek($fp, 3, SEEK_CUR)';var_dump(fseek($fp, 3, SEEK_CUR));
75 fseek($fp, 1)int(0)
77 fseek($fp, 1, SEEK_CUR)int(0)
79 fseek($fp, -1, SEEK_CUR)int(0)
81 fseek($fp, -1, SEEK_END)int(0)
83 fseek($fp, -8, SEEK_END)int(-1)
85 fseek($fp, -7, SEEK_END)int(0)
87 fseek($fp, 0, SEEK_END)int(0)
89 fseek($fp, 1, SEEK_END)int(-1)
91 fseek($fp, -8, SEEK_END)int(-1)
93 fseek($fp, 6)int(0)
95 fseek($fp, 8)int(-1)
97 fseek($fp, -1)int(-1)
101 fseek($fp, -5, SEEK_CUR)int(-1)
104 fseek($fp, 5, SEEK_CUR)int(-1)
107 fseek($fp, -4, SEEK_CUR)int(0)
110 fseek($fp, 3, SEEK_CUR)int(0)