PHP - Função imap_bodystruct ()
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_bodystruct() A função aceita um valor de recurso que representa um fluxo IMAP, um valor inteiro que representa uma mensagem específica e um valor de string que representa a seção do corpo como parâmetros e lê a estrutura da seção do corpo especificada de uma mensagem (representada pelo inteiro).
Sintaxe
imap_bodystruct($imap_stream ,$msg, $section);
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. |
2 | msg(Mandatory) Este é um valor inteiro que representa o número da mensagem / e-mail. |
3 | section(Mandatory) Este é o valor da string que representa a seção do corpo a ser lida. |
Valores Retornados
Esta função retorna um objeto que contém as informações sobre a estrutura da seção do corpo especificada.
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 de imap_bodystruct() 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 contents of a message
print("Message Structure: "."<br>");
$struct = imap_bodystruct($imap, 1, 1);
print_r($struct);
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Resultado
Isso irá gerar a seguinte saída -
Connection established....
Message Structure:
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
)
)
)
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) {
$struct = imap_bodystruct($imap, $msg, 1);
print_r($struct);
print("<br>");
print("<br>");
}
}
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Resultado
Isso irá gerar a seguinte saída -
Connection established....
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
)
)
)
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
)
)
)
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 )
)
)
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 )
)
)