imap_errors_basic.phpt 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. --TEST--
  2. Test imap_errors() function : basic functionality
  3. --SKIPIF--
  4. <?php
  5. require_once(dirname(__FILE__).'/skipif.inc');
  6. ?>
  7. --FILE--
  8. <?php
  9. /* Prototype : array imap_errors ( void )
  10. * Description: Returns all of the IMAP errors that have occurred.
  11. * Source code: ext/imap/php_imap.c
  12. */
  13. echo "*** Testing imap_errors() : basic functionality ***\n";
  14. require_once(dirname(__FILE__).'/imap_include.inc');
  15. $password = "bogus"; // invalid password to use in this test
  16. echo "Issue open with invalid password with normal default number of retries, i.e 3\n";
  17. $mbox = imap_open($default_mailbox, $username, $password, OP_READONLY, 3);
  18. echo "List any errors\n";
  19. var_dump(imap_errors());
  20. echo "\n\nIssue open with invalid password with retries == 1\n";
  21. $mbox = imap_open($default_mailbox, $username, $password, OP_READONLY, 1);
  22. echo "List any errors\n";
  23. var_dump(imap_errors());
  24. ?>
  25. ===Done===
  26. --EXPECTF--
  27. *** Testing imap_errors() : basic functionality ***
  28. Issue open with invalid password with normal default number of retries, i.e 3
  29. Warning: imap_open(): Couldn't open stream %s in %s on line %d
  30. List any errors
  31. array(%d) {
  32. [0]=>
  33. string(%d) "%s"
  34. [1]=>
  35. string(%d) "%s"
  36. [2]=>
  37. string(%d) "%a
  38. }
  39. Issue open with invalid password with retries == 1
  40. Warning: imap_open(): Couldn't open stream %s in %s on line %d
  41. List any errors
  42. array(%d) {
  43. [0]=>
  44. string(%d) "%a
  45. }
  46. ===Done===