PHP - Função imap_fetchstructure ()
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_fetchstructure() função aceita um valor de recurso que representa um fluxo IMAP, um valor inteiro que representa uma mensagem na caixa de correio como parâmetros e lê a estrutura da mensagem especificada.
Sintaxe
imap_fetchstructure($imap_stream, $msg [, $options]);
Parâmetros
options(Optional)
Este é um parâmetro opcional que pode ser um ou mais dos seguintes -
FT_UID
FT_PEEK
FT_INTERNAL
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. |
2 | msg (Mandatory) Este é um valor inteiro que representa o número da mensagem / e-mail, que deve ser marcado para exclusão. |
3 | msg (Mandatory) Este é um valor inteiro que representa o número da mensagem / e-mail, que deve ser marcado para exclusão. |
Valores Retornados
Esta função retorna um valor de string que representa a seção recuperada de um e-mail / mensagem.
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_fetchstructure() 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 Structure
print("Structure: "."<br>");
$body = imap_fetchstructure($imap, 1);
print_r($body);
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Resultado
Isso irá gerar a seguinte saída -
Connection established....
Structure:
stdClass Object (
[type] => 1 [encoding] => 0 [ifsubtype] => 1
[subtype] => ALTERNATIVE [ifdescription] => 0
[ifid] => 0 [ifdisposition] => 0 [ifdparameters] => 0
[ifparameters] => 1 [parameters] =>
Array (
[0] => stdClass Object (
[attribute] => BOUNDARY
[value] => 000000000000a0d34e05b24373f4
)
)
[parts] => Array (
[0] => stdClass Object (
[type] => 0 [encoding] => 0 [ifsubtype] => 1
[subtype] => PLAIN [ifdescription] => 0
[ifid] => 0 [lines] => 1 [bytes] => 15
[ifdisposition] => 0 [ifdparameters] => 0
[ifparameters] => 1 [parameters] => Array (
[0] => stdClass Object (
[attribute] => CHARSET [value] => UTF-8
)
)
)
[1] => stdClass Object (
[type] => 0 [encoding] => 0 [ifsubtype] => 1
[subtype] => HTML [ifdescription] => 0 [ifid] => 0
[lines] => 1 [bytes] => 40 [ifdisposition] => 0
[ifdparameters] => 0 [ifparameters] => 1
[parameters] => Array (
[0] => stdClass Object (
[attribute] => CHARSET [value] => UTF-8
)
)
)
)
)
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>");
//Searching emails
$emailData = imap_search($imap, '');
if (! empty($emailData)) {
foreach ($emailData as $msg) {
$msg = imap_fetchstructure($imap, $msg);
print($msg."<br>");
}
}
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Resultado
Isso irá gerar a seguinte saída -
Connection established....
stdClass Object (
[type] => 1 [encoding] => 0 [ifsubtype] => 1
[subtype] => ALTERNATIVE [ifdescription] => 0
[ifid] => 0 [ifdisposition] => 0 [ifdparameters] => 0
[ifparameters] => 1 [parameters] =>
Array (
[0] => stdClass Object (
[attribute] => BOUNDARY [value] => 000000000000a0d34e05b24373f4
)
)
[parts] =>
Array (
[0] => stdClass Object (
[type] => 0 [encoding] => 0 [ifsubtype] => 1
[subtype] => PLAIN [ifdescription] => 0 [ifid] => 0
[lines] => 1 [bytes] => 15 [ifdisposition] => 0
[ifdparameters] => 0 [ifparameters] => 1
[parameters] => Array (
[0] => stdClass Object (
[attribute] => CHARSET [value] => UTF-8
)
)
)
[1] => stdClass Object (
[type] => 0 [encoding] => 0 [ifsubtype] => 1
[subtype] => HTML [ifdescription] => 0 [ifid] => 0
[lines] => 1 [bytes] => 40 [ifdisposition] => 0
[ifdparameters] => 0 [ifparameters] => 1 [parameters] =>
Array (
[0] => stdClass Object (
[attribute] => CHARSET [value] => UTF-8
)
)
)
)
)
stdClass Object (
[type] => 1 [encoding] => 0 [ifsubtype] => 1
[subtype] => ALTERNATIVE [ifdescription] => 0 [ifid] => 0
[ifdisposition] => 0 [ifdparameters] => 0 [ifparameters] => 1
[parameters] =>
Array (
[0] => stdClass Object (
[attribute] => BOUNDARY [value] => 000000000000bb1b8205b24375b9
)
)
[parts] =>
Array (
[0] => stdClass Object (
[type] => 0 [encoding] => 0 [ifsubtype] => 1
[subtype] => PLAIN [ifdescription] => 0 [ifid] => 0
[lines] => 1 [bytes] => 16 [ifdisposition] => 0
[ifdparameters] => 0 [ifparameters] => 1 [parameters] =>
Array (
[0] => stdClass Object (
[attribute] => CHARSET [value] => UTF-8
)
)
)
[1] => stdClass Object (
[type] => 0 [encoding] => 0
[ifsubtype] => 1 [subtype] => HTML [ifdescription] => 0
[ifid] => 0 [lines] => 1 [bytes] => 42 [ifdisposition] => 0
[ifdparameters] => 0 [ifparameters] => 1 [parameters] =>
Array (
[0] => stdClass Object (
[attribute] => CHARSET [value] => UTF-8
)
)
)
)
)
Exemplo
A seguir está um exemplo da função acima com parâmetros opcionais -
<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 Structure
print("Structure: "."<br>");
$body = imap_fetchstructure($imap, imap_uid($imap, 1), FT_UID);
print_r($body);
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Resultado
Isso irá gerar a seguinte saída -
Connection established....
Structure:
stdClass Object (
[type] => 1 [encoding] => 0 [ifsubtype] => 1
[subtype] => ALTERNATIVE [ifdescription] => 0 [ifid] => 0
[ifdisposition] => 0 [ifdparameters] => 0 [ifparameters] => 1
[parameters] =>
Array (
[0] => stdClass Object (
[attribute] => BOUNDARY [value] => 000000000000a0d34e05b24373f4
)
)
[parts] =>
Array (
[0] => stdClass Object (
[type] => 0 [encoding] => 0 [ifsubtype] => 1
[subtype] => PLAIN [ifdescription] => 0 [ifid] => 0
[lines] => 1 [bytes] => 15 [ifdisposition] => 0
[ifdparameters] => 0 [ifparameters] => 1 [parameters] =>
Array (
[0] => stdClass Object (
[attribute] => CHARSET [value] => UTF-8
)
)
) [1] => stdClass Object (
[type] => 0 [encoding] => 0
[ifsubtype] => 1 [subtype] => HTML [ifdescription] => 0
[ifid] => 0 [lines] => 1 [bytes] => 40
[ifdisposition] => 0 [ifdparameters] => 0
[ifparameters] => 1 [parameters] =>
Array (
[0] => stdClass Object (
[attribute] => CHARSET [value] => UTF-8
)
)
)
)
)