PHP - imap_set_quota() 函数



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

imap_set_quota() 函数接受表示 IMAP 流的资源值、表示 quota_root 的字符串值以及表示最大配额限制的整数值作为参数,并为给定的邮箱设置指定的配额。

语法

imap_set_quota($imap_stream, $quota_root, $quota_limit);

参数

序号 参数和描述
1

imap_stream(必填)

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

2

quota_root(必填)

这是一个字符串值,表示 quota_root,它将采用 user.name 的形式,其中 name 是邮箱的名称。

3

quota_limit(必填)

这是一个整数值,表示最大大小。

返回值

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

PHP 版本

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

示例

此示例演示了 imap_set_quota() 函数的使用 -

<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>");
		 
         //Setting the quota root
         $res = imap_set_quota($imap, "user.sample", 3000);
         if($res){
            print("Quota value was set");
         }else{
            print("Error Occurred");
         }
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出 -

Quota value was set

示例

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

<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>");
		 
         //Setting the quota root
         imap_set_quota($imap, "user.sample", 3000);

         $quota_value = imap_get_quota($imap, "user.sample");
         if (is_array($quota_value)) {
            $storage = $quota_values['STORAGE'];
            print("Usage: " . $storage['usage']);
            print("<br>");
            print("Limit: " . $storage['limit']);
         }
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出 -

Usage: 1000
Limit: 3000
php_function_reference.htm
广告