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


PHP imap_set_quota()用法及代码示例



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

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

用法

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

参数

Sr.No 参数及说明
1

imap_stream (Mandatory)

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

2

quota_root (Mandatory)

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

3

quota_limit (Mandatory)

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

返回值

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

PHP版本

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

示例

这个例子演示了使用imap_set_quota()函数 -

<html>
   <body>
      <?php
         //Establishing connection
         $url = "{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX";
         $id = "tutorialspoint.test@gmail.com";
         $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 = "tutorialspoint.test@gmail.com";
         $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 - imap_set_quota() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。