123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- --TEST--
- Test fwrite() function : usage variations - r+, r+b & r+t modes
- --SKIPIF--
- <?php
- if( substr(PHP_OS, 0, 3) == 'WIN' ) {
- die('skip...Not valid for Windows');
- }
- ?>
- --FILE--
- <?php
- echo "*** Testing fwrite() various operations ***\n";
- // include the file.inc for Function: function delete_file($filename)
- include ("file.inc");
- /*
- Test fwrite with file opened in mode : r+,r+b,r+t
- File having content of type numeric, text,text_with_new_line & alphanumeric
- */
- $file_modes = array("r+", "r+b", "r+t");
- $file_content_types = array("numeric","text","text_with_new_line","alphanumeric");
- foreach($file_content_types as $file_content_type) {
- echo "\n-- Testing fwrite() with file having content of type ". $file_content_type ." --\n";
- /* open the file using $files_modes and perform fwrite() on it */
- foreach($file_modes as $file_mode) {
- echo "-- Opening file in $file_mode --\n";
- // create temp file and fill the data of type $file_content_type
- $filename = __DIR__."/fwrite_variation2.tmp"; // this is name of the file
- create_files ( __DIR__, 1, $file_content_type, 0755, 1, "w", "fwrite_variation", 2);
- $file_handle = fopen($filename, $file_mode);
- if(!$file_handle) {
- echo "Error: failed to fopen() file: $filename!";
- exit();
- }
- $data_to_be_written="";
- fill_buffer($data_to_be_written,$file_content_type,1024); //get the data of size 1024
- /* Write the data into the file, verify it by checking the file pointer position, eof position,
- filesize & by displaying the content */
- /*overwrite first 400 bytes in the file*/
- var_dump( ftell($file_handle) ); // expected : 0
- var_dump( fwrite($file_handle, $data_to_be_written, 400));
- var_dump( ftell($file_handle) ); // expected: 400
- var_dump( feof($file_handle) ); //Expecting bool(false)
- /*overwrite data in middle of the file*/
- fseek($file_handle, SEEK_SET, 1024/2 );
- var_dump( ftell($file_handle)); // expected: 1024/2
- var_dump( fwrite($file_handle, $data_to_be_written, 200) );
- var_dump( ftell($file_handle) );
- var_dump( feof($file_handle) ); //Expecting bool(false)
- /* write at the end of the file */
- fseek($file_handle, SEEK_END, 0);
- var_dump( ftell($file_handle) ); // expected: 1024
- var_dump( feof($file_handle) );
- var_dump( fwrite($file_handle, $data_to_be_written, 200) );
- var_dump( ftell($file_handle) );
- var_dump( feof($file_handle) ); //Expecting bool(false)
- /* display the file content, check the file size */
- var_dump( fclose($file_handle) );
- clearstatcache();//clears file status cache
- var_dump( filesize($filename) );
- var_dump(md5(file_get_contents($filename)));
- delete_file($filename); // delete file with name fwrite_variation2.tmp
- } // end of inner foreach loop
- } // end of outer foreach loop
- echo "Done\n";
- ?>
- --EXPECT--
- *** Testing fwrite() various operations ***
- -- Testing fwrite() with file having content of type numeric --
- -- Opening file in r+ --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "950b7457d1deb6332f2fc5d42f3129d6"
- -- Opening file in r+b --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "950b7457d1deb6332f2fc5d42f3129d6"
- -- Opening file in r+t --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "950b7457d1deb6332f2fc5d42f3129d6"
- -- Testing fwrite() with file having content of type text --
- -- Opening file in r+ --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "3bdaf80dae28bc24bb304daa5ffee16c"
- -- Opening file in r+b --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "3bdaf80dae28bc24bb304daa5ffee16c"
- -- Opening file in r+t --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "3bdaf80dae28bc24bb304daa5ffee16c"
- -- Testing fwrite() with file having content of type text_with_new_line --
- -- Opening file in r+ --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "b188d7c8aa229cbef067e5970f2daba9"
- -- Opening file in r+b --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "b188d7c8aa229cbef067e5970f2daba9"
- -- Opening file in r+t --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "b188d7c8aa229cbef067e5970f2daba9"
- -- Testing fwrite() with file having content of type alphanumeric --
- -- Opening file in r+ --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "5d4ec23a3d9dd447e2f702d9e0e114d9"
- -- Opening file in r+b --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "5d4ec23a3d9dd447e2f702d9e0e114d9"
- -- Opening file in r+t --
- int(0)
- int(400)
- int(400)
- bool(false)
- int(400)
- int(200)
- int(600)
- bool(false)
- int(2)
- bool(false)
- int(200)
- int(202)
- bool(false)
- bool(true)
- int(1024)
- string(32) "5d4ec23a3d9dd447e2f702d9e0e114d9"
- Done
|