PHP - Função imap_binary ()
As 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_binary() A função aceita um valor de string representando uma string de 8 bits como parâmetro e o converte em uma string de base64.
Sintaxe
imap_binary($str);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | str (Mandatory) Este é um valor de string que representa a string de 8 bits a ser convertida |
Valores Retornados
Esta função retorna um valor de string que é um formato base64 da string fornecida.
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_binary() 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>");
//Encoding the text
$text = "Welcome to Tutorials point";
$encoded = imap_binary($text);
print("Encoded value: ". "<br>");
print($encoded);
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Resultado
Isso irá gerar a seguinte saída -
Connection established....
Encoded value:
V2VsY29tZSB0byBUdXRvcmlhbHNwb2ludA==
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 body
$text = imap_fetchbody($imap, 1, 1);
//Encoding the mail contents
$encoded = imap_binary($text);
print("Encoded value of the mail contents: ". "<br>");
print($encoded);
print("<br>");
//Decoding the mail content
$res = imap_base64($encoded);
print("Decoded value of the message: "."<br>");
print($res);
//Closing the connection
imap_close($imap);
?>
</body>
</html>
Resultado
Isso irá gerar a seguinte saída -
Connection established....
Encoded value of the mail contents:
I3NhbXBsZV9tYWlsMQ0K
Decoded value of the message:
#sample_mail1