Lines Matching refs:fwrite
2 Test fwrite() function : error conditions
8 echo "*** Testing fwrite() : error conditions ***\n";
15 echo "-- Testing fwrite() with invalid length arguments --\n";
17 var_dump( fwrite($file_handle, $data, $len) );
19 var_dump( fwrite($file_handle, $data, $len) );
21 // fwrite() on a file handle which is already closed
22 echo "-- Testing fwrite() with closed/unset file handle --\n";
25 var_dump(fwrite($file_handle,"data"));
38 *** Testing fwrite() : error conditions ***
39 -- Testing fwrite() with invalid length arguments --
42 -- Testing fwrite() with closed/unset file handle --
43 fwrite(): supplied resource is not a valid stream resource