Lines Matching refs:fgetss
2 Test fgetss() function : usage variations - read/write modes, file pointer at EOF
12 Prototype: string fgetss ( resource $handle [, int $length [, string $allowable_tags]] );
16 /* try fgetss on files which are opened in read/write modes
23 echo "*** Testing fgetss() : usage variations ***\n";
27 <test>Testing fgetss() functions</test>
43 echo "\n-- Testing fgetss() with file opened using $file_modes[$mode_counter] mode --\n";
61 var_dump( fgetss($file_handle) ); // try to read
66 var_dump( fgetss($file_handle, 80, "<test>, <html>, <?>") );
81 *** Testing fgetss() : usage variations ***
83 -- Testing fgetss() with file opened using w+ mode --
98 -- Testing fgetss() with file opened using w+b mode --
113 -- Testing fgetss() with file opened using w+t mode --
128 -- Testing fgetss() with file opened using a+ mode --
143 -- Testing fgetss() with file opened using a+b mode --
158 -- Testing fgetss() with file opened using a+t mode --
173 -- Testing fgetss() with file opened using x+ mode --
188 -- Testing fgetss() with file opened using x+b mode --
203 -- Testing fgetss() with file opened using x+t mode --