Imap_reopen
Re-open the IMAP link.
Syntax: int imap_reopen (String imap_stream, String mailbox, string [flags]);
return value: Integer
Function type: http://www.aliyun.com/zixun/aggregation/32416.html "> network system
Content Description
This function will reopen the IMAP link between the client and the server. This function is usually shared with the imap_ping () function. The parameter mailbox is the server-side location. Parameter flags can be omitted with the following values:
Op_readonly: Open link Use read-only state.
Op_anonymous: The NNTP server is read anonymously and the. newsrc file is not used.
Op_halfopen: Links only to IMAP or NNTP servers and does not open mailboxes.
Cl_expunge: Automatically clears the mail from the mailbox when the link is closed.
Usage examples
<?php
$userid = "Nulluser";
$passwd = "PASSWD38";
$MB = Imap_open ("(imap.null.org) INBOX", $userid, $passwd);
if (!imap_ping ($MB)) {
Imap_reopen ($MB, $userid, $passwd);
}
Imap_close ($MB);
?>