php8.5
Home/ Manual/ imap / functions/ imap_close

imap_close

PHP function Edit on GitHub ✎

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

Close an IMAP stream

Description

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

Closes the imap stream.

Parameters

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()

Return Values

Always

Errors/Exceptions

Throws a ValueError if flags is invalid.

Changelog

VersionDescription
8.0.0A ValueError is now thrown on invalid flags parameter values. Previously, a warning was emitted and the function returned false.

See Also

Source: reference/imap/functions/imap-close.xml · from the official PHP manual (php/doc-en)