Lines Matching refs:SEEK_END
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));
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)