PHP - Função imap_headers ()
Funções PHP-IMAP ajudam você a acessar contas de e-mail, IMAP significa IInternet Maflição Acesso Protocol usando essas funções, você também pode trabalhar com NNTP, protocolos POP3 e métodos de acesso à caixa de correio local.
o imap_headers() A função aceita um valor de recurso que representa um fluxo IMAP como parâmetro, recupera e retorna cabeçalhos para todas as mensagens na caixa de correio especificada.
Sintaxe
imap_headers($imap_stream);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | imap_stream (Mandatory) Este é um valor de string que representa um fluxo IMAP, valor de retorno do imap_open() função. |
Valores Retornados
Esta função retorna uma matriz de strings onde cada string contém informações de cabeçalho.
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 4 e funciona em todas as versões posteriores.
Exemplo
O exemplo a seguir demonstra o uso do imap_headers() função -
<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>
Resultado
Isso irá gerar a seguinte saída -
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)
Exemplo
A seguir está outro exemplo desta função -
<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>
Resultado
Isso irá gerar a seguinte saída -
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))