Dutch PHP Conference 2023 - Call for Papers

imap_close

(PHP 4, PHP 5, PHP 7, PHP 8)

imap_closeClose an IMAP stream

Descrição

imap_close(IMAP\Connection $imap, int $flags = 0): bool

Closes the imap stream.

Parâmetros

imap

Uma instância de IMAP\Connection.

flags

If set to CL_EXPUNGE, the function will silently expunge the mailbox before closing, removing all messages marked for deletion. You can achieve the same thing by using imap_expunge()

Valor Retornado

Retorna true em caso de sucesso ou false em caso de falha.

Changelog

Versão Descrição
8.1.0 O parâmetro imap agora espera uma instância de IMAP\Connection; anteriormente, um resource imap válido era esperado.

Veja Também

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top