当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imap_utf7_encode()用法及代码示例



PHP-IMAP 函数可帮助您访问电子邮件帐户,IMAP 代表I互联网M艾尔A访问权限Protocol 使用这些函数您还可以使用 NNTP、POP3 协议和本地邮箱访问方法。

这个imap_utf7_encode()函数接受 ISO-8859-1 字符串作为参数并以 UTF-7 格式编码。

用法

imap_utf7_decode($txt);

参数

Sr.No 参数及说明
1

txt (Mandatory)

这是一个表示 ISO-8859-1 字符串的字符串值。

返回值

此函数返回一个字符串,其中包含给定字符串的编码值。

PHP版本

这个函数最初是在 PHP 版本 4 中引入的,并且适用于所有后续版本。

示例

下面的例子演示了imap_utf7_decode()函数。

<html>
   <body>
      <?php
         //Decoding the string
         $utf7 = '[Gmail]/&BBIEMAQ2BD0EPgQ1−';
         $res = imap_utf7_decode($utf7);
         print("Decoded value:".$res."<br>");
         
         //Encoding the result again
         $encoded_val = imap_utf7_encode($res);
         print("Encoded value:".$encoded_val);
      ?>
   </body>
</html>

输出

这会生成以下输出 -

Decoded value:[Gmail]/06=>5
Encoded value:[Gmail]/&BBIE-0&BA-6&BA-=&BA->&BA-5

示例

以下是此函数的另一个示例 -

<html>
   <body>
      <?php
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "tutorialspoint.test@gmail.com";
         $pwd = "cohondob_123";
         $mailbox = imap_open($url, $id, $pwd);
         print("Connection established....");
         print("<br>"); 
         //Creating a mailbox
         $newmailbox = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX.test";
         $res = imap_createmailbox($mailbox, imap_utf7_encode($newmailbox));		 
         if($res){
            print("Mailbox created successfully");
         }else{
            print("Error occurred");
         }		 
      ?>
   </body>
</html>

输出

上述程序生成以下输出 -

Connection established....
Mailbox created successfully

相关用法


注:本文由纯净天空筛选整理自 PHP - imap_utf7_encode() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。