Lines Matching refs:fwrite
2 Test fwrite() function : usage variations - x, xb, xt, x+, x+b & x+t modes
12 Prototype: int fwrite ( resource $handle,string string, [, int $length] );
13 Description: fwrite() writes the contents of string to the file stream pointed to by handle.
16 fwrite() returns the number of bytes written or FALSE on error
20 echo "*** Testing fwrite() various operations ***\n";
26 Test fwrite with file opened in mode : x, xb, xt, x+, x+b, x+t
35 echo "\n-- Testing fwrite() with file having content of type ". $file_content_type ." --\n";
37 /* open the file using $files_modes and perform fwrite() on it */
56 var_dump( fwrite($file_handle,$data_to_be_written,400));
74 *** Testing fwrite() various operations ***
76 -- Testing fwrite() with file having content of type numeric --
126 -- Testing fwrite() with file having content of type text --
176 -- Testing fwrite() with file having content of type text_with_new_line --
226 -- Testing fwrite() with file having content of type alphanumeric --