PHP 8.3.4 Released!

imap_msgno

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

imap_msgnoBelirtilen eşsiz kimlik için ileti numarasını döndürür

Açıklama

imap_msgno(IMAP\Connection $imap, int $ileti_uid): int

Belirtilen eşsiz kimlik (ileti_uid) için ileti numarasını döndürür.

Bu işlev imap_uid() işlevinin tersidir.

Bağımsız Değişkenler

imap

IMAP\Connection nesnesi.

ileti_uid

İletinin eşsiz kimliği.

Dönen Değerler

İletinin sıra numarası bir tamsayı olarak döner.

Sürüm Bilgisi

Sürüm: Açıklama
8.1.0 imap bağımsız değişkeni artık IMAP\Connection nesnesi kabul ediyor, evvelce resource türünde geçerli bir imap değeri kabul ederdi.

Ayrıca Bakınız

  • imap_uid() - Numarası belirtilen iletiyle ilgili eşsiz kimliği döndürür

add a note

User Contributed Notes 3 notes

up
0
phpdocu at malli dot co dot at
1 year ago
Here is a simple working snippet to properly check the return value of imap_msgno():

$id = imap_msgno($imapConnection, $mailUid); //convert to normal messagenumber in current context
$verifyUid = imap_uid($imapConnection, $id);
if ($verifyUid != $mailUid)
throw new Exception("Attention: imap_msgno returned nonsense! The mail was probably not found in the mailbox!");
up
-1
os at simonconsulting dot at
12 years ago
For me, this function returns FALSE if uid does not match a message in the current mailbox.
up
-1
dcridland.at.redwire.com
22 years ago
<p>Note that imap_msgno() doesn't ever give you an error message. So, assuming you're passing about message numbers as a UID, be warned that:</p>
<p>$msguid = false;<br>
$msgno = imap_msgno( $your_initialized_connection, $msguid );</p>
<p>Will leave ($msgno==1) - this is probably not what you want, and it's surprisingly easy to miss while you're doing the basic testing.</p>
To Top