If you do not use imap_errors() to clear the error stack, any errors that remain at the end of the script execution will be raised as PHP Notices.
(PHP 4, PHP 5, PHP 7, PHP 8)
imap_errors — Devuelve todos los errores de IMAP que han ocurrido
Obtiene todos los errores de IMAP (si los hay) que han ocurrido durante esta petición de página o desde que se reinició la pila de errores.
Al llamar a imap_errors(), la pila de errores se limpia posteriormente.
Esta función devuelve un array con todos los mensajes de error de IMAP
generados desde la última llamada a imap_errors(),
o desde el principio de la página. Devuelve false
si no hay disponible ningún mensaje
de error.
If you do not use imap_errors() to clear the error stack, any errors that remain at the end of the script execution will be raised as PHP Notices.
For those curious, this function will return a linear array of strings as opposed to say error_get_last which returns an associative array of different things.
e.g.
[0 => '[TRYCREATE] No folder {imap.gmail.com} (Failure)']
When calling imap_close($mbox), notices will be generated for each error that has occurred within the imap functions. To suppress these error messages (including Mailbox is empty, which is not really an error) simply call imap_errors() and then imap_close($mbox).