imap_errors

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

imap_errorsOluşan tüm IMAP hatalarının iletilerini döndürür

Açıklama

imap_errors(): array|false

Hata yığıtı sıfırlandığından beri veya bu sayfa isteği sırasında oluşan tüm IMAP hatalarını döndürür.

imap_errors() çağrısı hata yığıtını temizler.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

Son imap_errors() çağrısından beri veya sayfa isteğinin başından beri oluşan tüm hataların iletilerini içeren bir dizi döndürür. Döndürülecek hiç hata iletisi yoksa false döner.

Ayrıca Bakınız

  • imap_last_error() - Geçerli sayfa isteği sırasında oluşan son IMAP hatasının açıklamasını döndürür
  • imap_alerts() - Oluşan tüm IMAP uyarı iletilerini döndürür

add a note add a note

User Contributed Notes 3 notes

up
8
Brandon Kirsch at perceptionilluminates dot com
10 years ago
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.
up
2
Jeremy Glover
17 years ago
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).
up
0
Luke Madhanga
9 years ago
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)']
To Top