PHP - Funzione imap_headers ()
Le funzioni PHP − IMAP ti aiutano ad accedere agli account di posta elettronica, IMAP sta per Internet Mail Access Protocol usando queste funzioni puoi anche lavorare con i protocolli NNTP, POP3 e metodi di accesso alla casella di posta locale.
Il imap_headers() accetta un valore di risorsa che rappresenta un flusso IMAP come parametro, recupera e restituisce le intestazioni per tutti i messaggi nella cassetta postale specificata.
Sintassi
imap_headers($imap_stream);
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. |
Valori restituiti
Questa funzione restituisce un array di stringhe in cui ogni stringa contiene informazioni sull'intestazione.
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_headers() 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 headers of all messages
print("Headers of all messages: "."<br>");
$res = imap_headers($imap);
foreach ($res as $msg) {
print($msg);
print("<br>");
}
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Produzione
Questo genererà il seguente output:
Connection established....
Headers of all messages:
1)22-Oct-2020 Sender1 (4857 chars)
U 2)22-Oct-2020 Sender1 (4858 chars)
3)25-Oct-2020 Sender2 (4880 chars)
4)25-Oct-2020 Sender 2 (4882 chars)
U 5)25-Oct-2020 Sender 3 (4884 chars)
6)25-Oct-2020 Sender 3 (4883 chars)
7)26-Oct-2020 Sender 3 (4888 chars)
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 headers of all messages
print("Headers of all messages: "."<br>");
$res = imap_headers($imap);
print_r($res);
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Produzione
Questo genererà il seguente output:
Connection established....
Headers of all messages:
Array (
[0] => 1
)
22-Oct-2020 KrishnaKasyap Bhagav (4857 chars)
[1] => U 2)22-Oct-2020 KrishnaKasyap Bhagav (4858 chars)
[2] => 3)25-Oct-2020 KrishnaKasyap Bhagav (4880 chars)
[3] => 4)25-Oct-2020 KrishnaKasyap Bhagav (4882 chars)
[4] => U 5))