PHP - imap_get_quota() 函数



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

imap_get_quota() 函数接受表示 IMAP 流的资源值和表示 quota_root 的字符串值作为参数,并检索配额级别设置以及指定邮箱的使用统计信息。

语法

imap_get_quota ($imap_stream, $quota_root);

参数

序号 参数及描述
1

imap_stream (必填)

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

2

quota_root (必填)

这是一个字符串值,表示 quota_root,其格式为 user.name,其中 name 是邮箱的名称。

返回值

此函数返回一个包含信息的数组值。

PHP 版本

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

示例

以下示例演示了 imap_get_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>");

         $quota_value = imap_get_quota($imap, "user.sample");
         print_r($quota_value);
         
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

示例

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

<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
广告