PHP - imap_get_quotaroot() 函数



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

**imap_get_quotaroot()** 函数接受一个表示 IMAP 流的资源值,一个表示 quota_root 的字符串值作为参数,并检索每个用户的配额级别设置。

语法

imap_get_quotaroot($imap_stream, $quota_root);

参数

序号 参数及说明
1

imap_stream (必填)

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

2

quota_root (必填)

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

返回值

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

PHP 版本

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

示例

以下示例演示了 **imap_get_quotaroot()** 函数的使用方法:

<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 = imap_get_quotaroot($imap, "INBOX");
         print_r($quota);
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出:

Connection established....
Array ( 
   [usage] => 349 [limit] => 15728640 [STORAGE] => 
   Array ( [usage] => 349 [limit] => 15728640 ) 
)

示例

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

<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 = imap_get_quotaroot($imap, "INBOX");
         if (is_array($quota)) {
            $storage = $quota['STORAGE'];
            print("Usage: " . $storage['usage']);
            print("<br>");
            print("Limit: " . $storage['limit']);
            print("<br><br>");
         }
         //Closing the connection
         imap_close($imap);   
      ?>
   </body>
</html>

输出

这将生成以下输出:

Connection established....
Usage: 349
Limit: 15728640
php_function_reference.htm
广告