Lines Matching refs:fwrite
2 Test fwrite() function : usage variations - r, rb & rt 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 : r,rb,rt
34 echo "\n-- Testing fwrite() with file having content of type ". $file_content_type ." --\n";
36 /* open the file using $files_modes and perform fwrite() on it */
57 var_dump( fwrite($file_handle, $data_to_be_written ));
61 // move the file pointer to end of the file and try fwrite()
64 var_dump( fwrite($file_handle, $data_to_be_written) ); // fwrite to fail
80 *** Testing fwrite() various operations ***
82 -- Testing fwrite() with file having content of type numeric --
120 -- Testing fwrite() with file having content of type text --
158 -- Testing fwrite() with file having content of type text_with_new_line --
196 -- Testing fwrite() with file having content of type alphanumeric --