123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- --TEST--
- Test fopen(), fclose() & feof() functions: basic functionality
- --FILE--
- <?php
- echo "*** Testing basic operations of fopen() and fclose() functions ***\n";
- $modes = array(
- "w",
- "wb",
- "wt",
- "w+",
- "w+b",
- "w+t",
- "r",
- "rb",
- "rt",
- "r+",
- "r+b",
- "r+t",
- "a",
- "ab",
- "at",
- "a+",
- "a+t",
- "a+b"
- );
- for( $i=0; $i<count($modes); $i++ ) {
- echo "\n-- Iteration with mode '$modes[$i]' --\n";
- $filename = __DIR__."/007_basic.tmp";
- // check fopen()
- $handle = fopen($filename, $modes[$i]);
- var_dump($handle );
- var_dump( ftell($handle) );
- var_dump( feof($handle) );
- // check fclose()
- var_dump( fclose($handle) );
- var_dump( $handle );
- // confirm the closure, using ftell() and feof()
- try {
- var_dump( ftell($handle) );
- } catch (TypeError $e) {
- echo $e->getMessage(), "\n";
- }
- try {
- var_dump( feof($handle) );
- } catch (TypeError $e) {
- echo $e->getMessage(), "\n";
- }
- }
- // remove the temp file
- unlink($filename);
- $x_modes = array(
- "x",
- "xb",
- "xt",
- "x+",
- "x+b",
- "x+t"
- );
- for( $i=0; $i<count($x_modes); $i++ ) {
- echo "\n-- Iteration with mode '$x_modes[$i]' --\n";
- $handle = fopen($filename, $x_modes[$i]);
- var_dump($handle );
- var_dump( ftell($handle) );
- var_dump( feof($handle) );
- // check fclose()
- var_dump( fclose($handle) );
- var_dump( $handle );
- // confirm the closure, using ftell() and feof()
- try {
- var_dump( ftell($handle) );
- } catch (TypeError $e) {
- echo $e->getMessage(), "\n";
- }
- try {
- var_dump( feof($handle) );
- } catch (TypeError $e) {
- echo $e->getMessage(), "\n";
- }
- var_dump( $handle );
- // remove the file
- unlink( $filename );
- }
- echo "\n*** Done ***\n";
- ?>
- --EXPECTF--
- *** Testing basic operations of fopen() and fclose() functions ***
- -- Iteration with mode 'w' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'wb' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'wt' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'w+' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'w+b' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'w+t' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'r' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'rb' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'rt' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'r+' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'r+b' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'r+t' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'a' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'ab' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'at' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'a+' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'a+t' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'a+b' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- -- Iteration with mode 'x' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- resource(%d) of type (Unknown)
- -- Iteration with mode 'xb' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- resource(%d) of type (Unknown)
- -- Iteration with mode 'xt' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- resource(%d) of type (Unknown)
- -- Iteration with mode 'x+' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- resource(%d) of type (Unknown)
- -- Iteration with mode 'x+b' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- resource(%d) of type (Unknown)
- -- Iteration with mode 'x+t' --
- resource(%d) of type (stream)
- int(0)
- bool(false)
- bool(true)
- resource(%d) of type (Unknown)
- ftell(): supplied resource is not a valid stream resource
- feof(): supplied resource is not a valid stream resource
- resource(%d) of type (Unknown)
- *** Done ***
|