Lines Matching refs:f1
12 $f1 = fopen("php://input", "r");
13 fseek($f1, 3, SEEK_SET);
14 echo fgetc($f1);
15 fseek($f1, 1, SEEK_SET);
16 echo fgetc($f1);
17 fseek($f1, 3, SEEK_CUR);
18 echo fgetc($f1);
19 fseek($f1, -3, SEEK_CUR);
20 echo fgetc($f1);
21 fseek($f1, 3, SEEK_END);
22 echo fgetc($f1);
23 fseek($f1, -3, SEEK_END);
26 echo fgetc($f1);