Lines Matching refs:fgetss
2 Test fgetss() function : usage variations - read modes, file pointer at EOF
11 Prototype: string fgetss ( resource $handle [, int $length [, string $allowable_tags]] );
18 echo "*** Testing fgetss() : usage variations ***\n";
22 <test>Testing fgetss() functions</test>
39 echo "\n-- Testing fgetss() with file opened using $file_modes[$mode_counter] mode --\n";
59 var_dump( fgetss($file_handle) ); // try to read
64 var_dump( fgetss($file_handle, 80, "<test>, <html>, <?>") );
77 *** Testing fgetss() : usage variations ***
79 -- Testing fgetss() with file opened using r mode --
94 -- Testing fgetss() with file opened using rb mode --
109 -- Testing fgetss() with file opened using rt mode --
124 -- Testing fgetss() with file opened using r+ mode --
139 -- Testing fgetss() with file opened using r+b mode --
154 -- Testing fgetss() with file opened using r+t mode --