imap_msgno

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

imap_msgnoDevuelve el número de secuencia del mensaje para un UID dado

Descripción

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

Devuelve el número de secuencia del mensaje para el UID message_uid.

Esta función es el inverso de la función imap_uid().

Parámetros

imap

An IMAP\Connection instance.

message_uid

El UID del mensaje

Valores devueltos

Devuelve el número de secuencia del mensaje para el UID message_uid.

Historial de cambios

Versión Descripción
8.1.0 The imap parameter expects an IMAP\Connection instance now; previously, a valid imap recurso was expected.

Ver también

add a note

User Contributed Notes 1 note

up
1
phpdocu at malli dot co dot at
3 years 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!");
To Top