Lines Matching refs:fgetss
2 Test fgetss() function : usage variations - read modes
6 Prototype: string fgetss ( resource $handle [, int $length [, string $allowable_tags]] );
13 /*Test fgetss() with all read modes , reading line by line with allowable tags: <test>, <html>, <?>…
15 echo "*** Testing fgetss() : usage variations ***\n";
19 <test>Testing fgetss() functions</test>
36 echo "\n-- Testing fgetss() with file opened using $file_modes[$mode_counter] mode --\n";
59 var_dump( fgetss($file_handle, 80, "<test>, <html>, <?>") );
73 *** Testing fgetss() : usage variations ***
75 -- Testing fgetss() with file opened using r mode --
82 string(40) "<test>Testing fgetss() functions</test>
136 -- Testing fgetss() with file opened using rb mode --
143 string(40) "<test>Testing fgetss() functions</test>
197 -- Testing fgetss() with file opened using rt mode --
204 string(40) "<test>Testing fgetss() functions</test>
258 -- Testing fgetss() with file opened using r+ mode --
265 string(40) "<test>Testing fgetss() functions</test>
319 -- Testing fgetss() with file opened using r+b mode --
326 string(40) "<test>Testing fgetss() functions</test>
380 -- Testing fgetss() with file opened using r+t mode --
387 string(40) "<test>Testing fgetss() functions</test>