|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-02-29 14:34 UTC] chagenbu at cvs dot php dot net
[2020-02-07 06:12 UTC] phpdocbot@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sun Jun 14 19:00:01 2026 UTC |
i would like to connect to an imap server an get the list of all the mailboxes a user has. the docu says : get_mailboxes : "If you want all mailboxes, pass pattern as an empty string. " if i use : $result = imap_getmailboxes($mailbox,"{mailserver:143}",""); i get an array containing 1 object wich name attribute is- {mailserver:143} but this line works: $result = imap_getmailboxes($mailbox,"{mailserver:143}","*"); maybe change the docu to be better understandable .. THANK YOU