PHP - imap_qprint() 函数



PHP 的 IMAP 函数帮助您访问电子邮件帐户,IMAP 代表 **I**nternet **M**ail **A**ccess **P**rotocol,使用这些函数您还可以使用 NNTP、POP3 协议和本地邮箱访问方法。

imap_qprint() 函数接受一个表示可打印字符串的字符串值作为参数,并将其转换为 8 位字符串。

语法

imap_qprint($str);

参数

序号 参数和描述
1

str (必填)

这是一个表示用引号括起来的打印字符串的字符串值。

返回值

此函数返回给定可打印字符串的 8 位字符串值。

PHP 版本

此函数最早在 PHP 4 版本中引入,并在所有后续版本中均有效。

示例

以下示例演示了imap_qprint() 字符串的使用:

<html>
   <body>
      <?php
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "[email protected]";
         $pwd = "cohondob_123";
         $mailbox = imap_open($url, $id, $pwd);
         print("Connection established....");
         print("<br>");

         $qstring = "This 'is a sample text ' with quotes";
         $res = imap_qprint($qstring);
         print($res);
      ?>
   </body>
</html>

输出

这将生成以下输出:

Connection established....
This 'is a sample text ' with quotes

示例

以下是上述函数的另一个示例:

<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("Contents of the first message: "."<br>");
         $body = imap_body($imap, 1);
         imap_qprint($body);
    
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出:

Connection established....
Contents of the first message:
"UTF-8" #sample_mail1 --000000000000a0d34e05b24373f4 Content-Type: text/h 
php_function_reference.htm
广告