PHP.nl

imap_is_open

imap_is_open

Check if the IMAP stream is still valid

bool **imap_is_open** IMAP\Connection $imap

Check if the stream is still valid.

Returns true if the stream is still valid, false otherwise.

Voorbeeld: example

<?php
$mbox = imap_open("{imap.example.org:143}INBOX", "username", "password") or die(implode(", ", imap_errors()));
imap_is_open($mbox);
// ...
?>