123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- --TEST--
- Test fgets() function : usage variations - read when file pointer at EOF
- --SKIPIF--
- <?php
- if (substr(PHP_OS, 0, 3) == 'WIN') {
- die('skip Not valid for Windows');
- }
- ?>
- --FILE--
- <?php
- // include the file.inc for common test functions
- include ("file.inc");
- $file_modes = array("w+", "w+b", "w+t",
- "a+", "a+b", "a+t",
- "x+", "x+b", "x+t");
- $file_content_types = array("numeric", "text", "text_with_new_line", "alphanumeric");
- echo "*** Testing fgets() : usage variations ***\n";
- $filename = __DIR__."/fgets_variation6.tmp";
- foreach($file_modes as $file_mode) {
- echo "\n-- Testing fgets() with file opened using mode $file_mode --\n";
- foreach($file_content_types as $file_content_type) {
- echo "-- File content type : $file_content_type --\n";
- /* create files with $file_content_type */
- $file_handle = fopen($filename, $file_mode);
- $data = fill_file($file_handle, $file_content_type, 50);
- if ( !$file_handle ) {
- echo "Error: failed to open file $filename!";
- exit();
- }
- echo "-- fgets() with file pointer pointing at EOF --\n";
- // seek to end of the file and try fgets()
- var_dump( fseek($file_handle, 0, SEEK_END) ); // set file pointer to eof
- var_dump( ftell($file_handle) ); // ensure that file pointer is at eof
- var_dump( feof($file_handle) ); // expected false
- var_dump( fgets($file_handle) ); // try n read a line, none expected
- var_dump( ftell($file_handle) ); // file pointer position
- var_dump( feof($file_handle) ); // ensure that file pointer is at eof
- //close file
- fclose($file_handle);
- // delete file
- delete_file($filename);
- } // file_content_type loop
- } // file_mode loop
- echo "Done\n";
- ?>
- --EXPECT--
- *** Testing fgets() : usage variations ***
- -- Testing fgets() with file opened using mode w+ --
- -- File content type : numeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text_with_new_line --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : alphanumeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- Testing fgets() with file opened using mode w+b --
- -- File content type : numeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text_with_new_line --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : alphanumeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- Testing fgets() with file opened using mode w+t --
- -- File content type : numeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text_with_new_line --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : alphanumeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- Testing fgets() with file opened using mode a+ --
- -- File content type : numeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text_with_new_line --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : alphanumeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- Testing fgets() with file opened using mode a+b --
- -- File content type : numeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text_with_new_line --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : alphanumeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- Testing fgets() with file opened using mode a+t --
- -- File content type : numeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text_with_new_line --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : alphanumeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- Testing fgets() with file opened using mode x+ --
- -- File content type : numeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text_with_new_line --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : alphanumeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- Testing fgets() with file opened using mode x+b --
- -- File content type : numeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text_with_new_line --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : alphanumeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- Testing fgets() with file opened using mode x+t --
- -- File content type : numeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : text_with_new_line --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- -- File content type : alphanumeric --
- -- fgets() with file pointer pointing at EOF --
- int(0)
- int(50)
- bool(false)
- bool(false)
- int(50)
- bool(true)
- Done
|