Query: imap_getacl
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
IMAP_GETACL(3) 1 IMAP_GETACL(3) imap_getacl - Gets the ACL for a given mailboxSYNOPSISarray imap_getacl (resource $imap_stream, string $mailbox)DESCRIPTIONGets the ACL for a given mailbox.PARAMETERSo $ imap_stream -An IMAP stream returned by imap_open(3). o $mailbox - The mailbox name, see imap_open(3) for more informationRETURN VALUESReturns an associative array of "folder" => "acl" pairs.EXAMPLESExample #1 imap_getacl(3) example <?php print_r(imap_getacl($conn_id, 'user.joecool')); ?> The above example will output something similar to: Array ( [asubfolder] => lrswipcda [anothersubfolder] => lrswipcda )NOTESThis function is currently only available to users of the c-client2000 or greater library.SEE ALSOimap_setacl(3). PHP Documentation Group IMAP_GETACL(3)