imap_close_variation3.phpt 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. * Pass different stream types to imap_close() to test whether it can close them
  15. */
  16. echo "*** Testing imap_close() : usage variations ***\n";
  17. echo "\n-- File Resource opened with fopen() --\n";
  18. var_dump($file_handle = fopen(__FILE__, 'r'));
  19. var_dump(imap_close($file_handle));
  20. var_dump($file_handle);
  21. echo "\n-- Directory Resource opened with opendir() --\n";
  22. var_dump($dir_handle = opendir(dirname(__FILE__)));
  23. var_dump(imap_close($dir_handle));
  24. var_dump($dir_handle);
  25. ?>
  26. ===DONE===
  27. --EXPECTF--
  28. *** Testing imap_close() : usage variations ***
  29. -- File Resource opened with fopen() --
  30. resource(%d) of type (stream)
  31. Warning: imap_close(): supplied resource is not a valid imap resource in %s on line %d
  32. bool(false)
  33. resource(%d) of type (stream)
  34. -- Directory Resource opened with opendir() --
  35. resource(%d) of type (stream)
  36. Warning: imap_close(): supplied resource is not a valid imap resource in %s on line %d
  37. bool(false)
  38. resource(%d) of type (stream)
  39. ===DONE===