|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-07-29 14:15 UTC] kalowsky@php.net
[2002-07-29 16:33 UTC] rudib at email dot si
[2002-07-29 18:09 UTC] kalowsky@php.net
[2002-07-29 19:47 UTC] sniper@php.net
[2002-07-29 22:44 UTC] kalowsky@php.net
[2002-07-30 10:10 UTC] rudib at email dot si
[2002-07-31 04:43 UTC] rudib at email dot si
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 15 12:00:01 2025 UTC |
imap_get_quota() returns an array with key 'STORAGE'. However, "garbage" follows in the value of the key. Sample script: -- <?php $imap = imap_open('{localhost:143}', 'cyrus', 'aa'); $quota = imap_get_quota($imap, 'user.test'); var_dump($quota); if (isset($quota['STORAGE'])) { print 'set!'; } ?> -- "Sample" output: array(1) { ["STORAGEAMESPACE"]=> array(2) { ["usage"]=> int(1) ["limit"]=> int(10000) } } Tho, sometimes, "STORAGE" is correctly set. :) I know that this has been mentioned in the CVS logs, but I'd really like a fix for this. ;) Thanks.