PHP - imap_gc() 函数



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

**imap_gc()** 函数接受一个表示 IMAP 流的资源值,一个表示缓存的整数,并清除/清空指定的缓存。

语法

imap_gc($imap_stream, $chaches);

参数

序号 参数及描述
1

imap_stream (必填)

这是一个表示 IMAP 流的字符串值,是 **imap_open()** 函数的返回值。

2

caches (必填)

这是一个表示要清除的缓存的整数。它可以是以下常量的组合:IMAP_GC_ELT(消息缓存元素)、IMAP_GC_ENV(信封和正文)、IMAP_GC_TEXTS(文本)。

返回值

此函数返回一个布尔值,成功时为 TRUE,失败时为 FALSE。

PHP 版本

此函数首次在 PHP 5 版本中引入,并在所有后续版本中有效。

示例

以下示例演示了 **imap_gc()** 函数的使用 −

<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>");
         //Clearing the cache
         $res = imap_gc($imap, IMAP_GC_TEXTS);
         
         if($res){
            print("Cache Cleared");
         }else{
            print("Error Occurred");
         }
		   //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出 −

Connection established....
Cache Cleared

示例

以下示例清除有关信封和正文的缓存 −

<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>");
         //Clearing the cache
         $res = imap_gc($imap, IMAP_GC_ENV);         

         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出 −

Connection established....
php_function_reference.htm
广告