Lines Matching refs:fwrite
2 Test fwrite() function : usage variations - r+, r+b & r+t modes
11 echo "*** Testing fwrite() various operations ***\n";
17 Test fwrite with file opened in mode : r+,r+b,r+t
26 echo "\n-- Testing fwrite() with file having content of type ". $file_content_type ." --\n";
28 /* open the file using $files_modes and perform fwrite() on it */
50 var_dump( fwrite($file_handle, $data_to_be_written, 400));
57 var_dump( fwrite($file_handle, $data_to_be_written, 200) );
65 var_dump( fwrite($file_handle, $data_to_be_written, 200) );
81 *** Testing fwrite() various operations ***
83 -- Testing fwrite() with file having content of type numeric --
136 -- Testing fwrite() with file having content of type text --
189 -- Testing fwrite() with file having content of type text_with_new_line --
242 -- Testing fwrite() with file having content of type alphanumeric --