imap_constructor.phpt 291 B

1234567891011121314
  1. --TEST--
  2. Attempt to instantiate an IMAP\Connection directly
  3. --EXTENSIONS--
  4. imap
  5. --FILE--
  6. <?php
  7. try {
  8. new IMAP\Connection();
  9. } catch (Error $ex) {
  10. echo "Exception: ", $ex->getMessage(), "\n";
  11. }
  12. --EXPECT--
  13. Exception: Cannot directly construct IMAP\Connection, use imap_open() instead