Annotation of embedaddon/php/ext/imap/tests/imap_close_variation3.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: Test imap_close() function : usage variations - different streams
! 3: --SKIPIF--
! 4: <?php
! 5: extension_loaded('imap') or die('skip imap extension not available in this build');
! 6: ?>
! 7: --FILE--
! 8: <?php
! 9: /* Prototype : bool imap_close(resource $stream_id [, int $options])
! 10: * Description: Close an IMAP stream
! 11: * Source code: ext/imap/php_imap.c
! 12: */
! 13:
! 14: /*
! 15: * Pass different stream types to imap_close() to test whether it can close them
! 16: */
! 17:
! 18: echo "*** Testing imap_close() : usage variations ***\n";
! 19:
! 20: echo "\n-- File Resource opened with fopen() --\n";
! 21: var_dump($file_handle = fopen(__FILE__, 'r'));
! 22: var_dump(imap_close($file_handle));
! 23: var_dump($file_handle);
! 24:
! 25: echo "\n-- Directory Resource opened with opendir() --\n";
! 26: var_dump($dir_handle = opendir(dirname(__FILE__)));
! 27: var_dump(imap_close($dir_handle));
! 28: var_dump($dir_handle);
! 29: ?>
! 30: ===DONE===
! 31: --EXPECTF--
! 32: *** Testing imap_close() : usage variations ***
! 33:
! 34: -- File Resource opened with fopen() --
! 35: resource(%d) of type (stream)
! 36:
! 37: Warning: imap_close(): supplied resource is not a valid imap resource in %s on line %d
! 38: bool(false)
! 39: resource(%d) of type (stream)
! 40:
! 41: -- Directory Resource opened with opendir() --
! 42: resource(%d) of type (stream)
! 43:
! 44: Warning: imap_close(): supplied resource is not a valid imap resource in %s on line %d
! 45: bool(false)
! 46: resource(%d) of type (stream)
! 47: ===DONE===
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>