PHP - Función imap_msgno ()
Las funciones PHP − IMAP le ayudan a acceder a las cuentas de correo electrónico, IMAP significa IInternet Mafligir Aacceso Protocol al utilizar estas funciones también puede trabajar con protocolos NNTP, POP3 y métodos de acceso al buzón local.
los imap_msgno() La función acepta un valor de recurso que representa un flujo IMAP, un valor entero que representa el UID del mensaje como parámetros y recupera el número de secuencia del mensaje que responde al UID dado.
Sintaxis
imap_msgno($imap_stream, $uid);
Parámetros
No Señor | Descripción de parámetros |
---|---|
1 | imap_stream (Mandatory) Este es un valor de cadena que representa un flujo IMAP, valor de retorno del imap_open() función. |
2 | uid (Mandatory) Este es un valor entero |
Valores devueltos
Esta función devuelve un valor entero que representa el número de secuencia del mensaje.
Versión PHP
Esta función se introdujo por primera vez en PHP versión 4 y funciona en todas las versiones posteriores.
Ejemplo
<html>
<body>
<?php
//Establishing connection
$url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
$id = "[email protected]";
$pwd = "cohondob_123";
$imap = imap_open($url, $id, $pwd);
print("Connection established...."."<br>");
//Fetching the contents of a message
print("UID of the 1st message: ");
$UID = imap_uid($imap, 1);
print($UID);
print("<br>");
//Retrieving the message number
$msg = imap_msgno($imap, $UID);
print($msg);
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Salida
Esto generará la siguiente salida:
Connection established....
UID of the 1st message: 19
1
Ejemplo
A continuación se muestra otro ejemplo de esta función:
<html>
<body>
<?php
//Establishing connection
$url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
$id = "[email protected]";
$pwd = "cohondob_123";
$imap = imap_open($url, $id, $pwd);
print("Connection established...."."<br>");
//Fetching the contents of a message
print("UID of the 1st message: ");
$UID = imap_uid($imap, 1);
print($UID);
print("<br>");
//Retrieving the message number
$msg = imap_msgno($imap, $UID);
print($msg);
$emailData = imap_search($imap, '');
foreach ($emailData as $msg) {
$msg = imap_msgno($imap, imap_uid($imap, $msg));
print($msg);
print("<br>");
}
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Salida
Esto genera la siguiente salida:
Connection established....
UID of the 1st message: 19
11
2
3
4
5
6
7