imap_is_open

Check if the IMAP stream is still valid

Description

bool imap_is_open(IMAP\Connection $imap)

Check if the IMAP stream is still valid.

Parameters

imap

An IMAP\Connection instance.

Return Values

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

Examples

Example #1 imap_is_open example

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