Lines Matching refs:fseek
2 Test fseek() function : variation functionality beyond file boundaries
7 echo "*** Testing fseek() : variation - beyond file boundaries ***\n";
16 echo "--- fseek beyond start of file ---\n";
17 var_dump(fseek($h, -4, SEEK_SET));
19 var_dump(fseek($h, -1, SEEK_CUR));
21 var_dump(fseek($h, -20, SEEK_CUR));
24 echo "--- fseek beyond end of file ---\n";
25 var_dump(fseek($h, 16, SEEK_SET));
27 fseek($h ,0, SEEK_SET);
37 *** Testing fseek() : variation - beyond file boundaries ***
38 --- fseek beyond start of file ---
45 --- fseek beyond end of file ---