2017-02-10 7 views

答えて

0

imap_mailboxmsginfoまたはimap_get_quotarootありがとう:

戻り値:

Date   date of last change (current datetime) 
Driver  driver 
Mailbox  name of the mailbox 
Nmsgs   number of messages 
Recent  number of recent messages 
Unread  number of unread messages 
Deleted  number of deleted messages 
Size   mailbox size 

imap_mailboxmsginfo

<?php 

$mbox = imap_open("{imap.example.org}INBOX", "username", "password") 
     or die("can't connect: " . imap_last_error()); 

$check = imap_mailboxmsginfo($mbox); 

if ($check) { 
    echo "Date: "  . $check->Date . "<br />\n" ; 
    echo "Driver: " . $check->Driver . "<br />\n" ; 
    echo "Mailbox: " . $check->Mailbox . "<br />\n" ; 
    echo "Messages: " . $check->Nmsgs . "<br />\n" ; 
    echo "Recent: " . $check->Recent . "<br />\n" ; 
    echo "Unread: " . $check->Unread . "<br />\n" ; 
    echo "Deleted: " . $check->Deleted . "<br />\n" ; 
    echo "Size: "  . $check->Size . "<br />\n" ; 
} else { 
    echo "imap_mailboxmsginfo() failed: " . imap_last_error() . "<br />\n"; 
} 

imap_close($mbox); 

?> 

imap_get_quotaroot

<?php 
$mbox = imap_open("{imap.example.org}", "kalowsky", "password", OP_HALFOPEN) 
     or die("can't connect: " . imap_last_error()); 

$quota = imap_get_quotaroot($mbox, "INBOX"); 
if (is_array($quota)) { 
    $storage = $quota['STORAGE']; 
    echo "STORAGE usage level is: " . $storage['usage']; 
    echo "STORAGE limit level is: " . $storage['limit']; 

    $message = $quota['MESSAGE']; 
    echo "MESSAGE usage level is: " . $message['usage']; 
    echo "MESSAGE limit level is: " . $message['limit']; 

    /* ... */ 

} 

imap_close($mbox); 
?> 

imap_get_quota:(管理者)

<?php 
$mbox = imap_open("{imap.example.org}", "mailadmin", "password", OP_HALFOPEN) 
     or die("can't connect: " . imap_last_error()); 

$quota_value = imap_get_quota($mbox, "user.kalowsky"); 
if (is_array($quota_value)) { 
    echo "Usage level is: " . $quota_value['usage']; 
    echo "Limit level is: " . $quota_value['limit']; 
} 

imap_close($mbox); 
?> 
+0

おかげL'L'リットル、それは本当に私を助けました –

関連する問題