PHP - Funzione imap_sort ()
Le funzioni PHP − IMAP ti aiutano ad accedere agli account di posta elettronica, IMAP sta per Internet Mail Access Protocol utilizzando queste funzioni puoi anche lavorare con i protocolli NNTP, POP3 e metodi di accesso alla casella di posta locale.
Il imap_sort() accetta un valore di risorsa che rappresenta un flusso IMAP e un valore stringa che rappresenta i criteri di ricerca e un valore intero (per l'ordinamento) come parametri e recupera i messaggi nella cassetta postale specificata nell'ordine specificato specificato.
Sintassi
imap_sort($imap_stream, $criteria, [$options, $charset]);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | imap_stream (Mandatory) Si tratta di un valore stringa che rappresenta un flusso IMAP, valore di ritorno di imap_open() funzione. |
2 | criteria (Mandatory) Questo è un valore stringa che rappresenta i criteri di ricerca. |
3 | reverse (Mandatory) Questo è un valore intero che rappresenta l'ordinamento. 1 per lo smistamento inverso. |
4 | options (Optional) Questo è un valore stringa che rappresenta il valore opzionale SE_UID. Nell'impostazione, l'array restituito contiene gli UID invece delle sequenze di messaggi. |
5 | search_criteria (Optional) Questo è un valore stringa che rappresenta i criteri di ricerca. |
6 | $charset (Optional) Questo è un valore stringa che rappresenta il set di caratteri MIME da utilizzare durante la ricerca. |
Valori restituiti
Questa funzione restituisce un array che contiene i numeri di messaggio / UID che rappresentano i messaggi nella casella di posta data in ordine ordinato.
Versione PHP
Questa funzione è stata introdotta per la prima volta nella versione 4 di PHP e funziona in tutte le versioni successive.
Esempio
L'esempio seguente mostra l'utilizzo di imap_sort() funzione -
<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("Result of sorting: "."<br>");
$res = imap_sort($imap, SORTDATE, 0);
print_r($res);
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Produzione
Questo genererà il seguente output:
Connection established....
Results of sorting:
Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7)
Esempio
Di seguito è riportato un altro esempio di questa funzione:
<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("Contents of the first message: "."<br>");
print_r(imap_sort($imap, SORTDATE, 0));
print("<br>");
print_r(imap_sort($imap, SORTARRIVAL, 0));
print("<br>");
print_r(imap_sort($imap, SORTFROM, 0));
print("<br>");
print_r(imap_sort($imap, SORTSUBJECT, 0));
print("<br>");
print_r(imap_sort($imap, SORTTO, 0));
print("<br>");
print_r(imap_sort($imap, SORTCC, 0));
print("<br>");
print_r(imap_sort($imap, SORTSIZE, 0));
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Produzione
Questo genererà il seguente output:
Connection established....
Contents of the first message:
Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 )
Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 )
Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 )
Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 )
Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 )
Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 )
Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 6 [5] => 5 [6] => 7 )
Esempio
Di seguito è riportato un esempio della funzione precedente con parametri opzionali:
<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("Contents of the first message: "."<br>");
$res = imap_sort($imap, SORTDATE, 1, SE_UID, "ALL", "");
foreach ($res as $msg) {
print($msg);
print("<br>");
print("<br>");
}
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Produzione
Questo genererà il seguente output:
Connection established....
Contents of the first message:
52
51
50
49
42
20
19