123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- --TEST--
- Test fgetc() function : usage variations - read when file pointer at EOF
- --FILE--
- <?php
- // include the header for common test function
- include ("file.inc");
- echo "*** Testing fgetc() : usage variations ***\n";
- echo "-- Testing fgetc() with file whose file pointer is pointing to EOF --\n";
- // create a file
- create_files(__DIR__, 1, "text_with_new_line", 0755, 1, "w", "fgetc_variation");
- $filename = __DIR__."/fgetc_variation1.tmp";
- // loop to check the file opened in different read modes
- $file_modes = array("r", "rb", "rt", "r+", "r+b", "r+t");
- $loop_counter =0;
- for(; $loop_counter < count($file_modes); $loop_counter++) {
- // print the hearder
- echo "-- File opened in mode : $file_modes[$loop_counter] --\n";
- // open the file
- $file_handle = fopen ($filename, $file_modes[$loop_counter]);
- if (!$file_handle) {
- echo "Error: failed to open file $filename! \n";
- exit();
- }
- // seek to end of the file and try fgetc()
- var_dump( fseek($file_handle, 0, SEEK_END) ); // set file pointer to eof
- var_dump( feof($file_handle) ); // expected false
- var_dump( ftell($file_handle) ); // ensure that file pointer is at eof
- var_dump( fgetc($file_handle) ); // try n read a char, none expected
- var_dump( feof($file_handle) ); // ensure that file pointer is at eof
- var_dump( ftell($file_handle) ); // file pointer position
- // close the file handle
- fclose($file_handle);
- }
- echo "Done\n";
- ?>
- --CLEAN--
- <?php
- unlink( __DIR__."/fgetc_variation1.tmp");
- ?>
- --EXPECT--
- *** Testing fgetc() : usage variations ***
- -- Testing fgetc() with file whose file pointer is pointing to EOF --
- -- File opened in mode : r --
- int(0)
- bool(false)
- int(1024)
- bool(false)
- bool(true)
- int(1024)
- -- File opened in mode : rb --
- int(0)
- bool(false)
- int(1024)
- bool(false)
- bool(true)
- int(1024)
- -- File opened in mode : rt --
- int(0)
- bool(false)
- int(1024)
- bool(false)
- bool(true)
- int(1024)
- -- File opened in mode : r+ --
- int(0)
- bool(false)
- int(1024)
- bool(false)
- bool(true)
- int(1024)
- -- File opened in mode : r+b --
- int(0)
- bool(false)
- int(1024)
- bool(false)
- bool(true)
- int(1024)
- -- File opened in mode : r+t --
- int(0)
- bool(false)
- int(1024)
- bool(false)
- bool(true)
- int(1024)
- Done
|