imap_getacl

(PHP 5, PHP 7)
Gets the ACL for a given mailbox
array imap_getacl ( resource $imap_stream, string $mailbox )

Gets the ACL for a given mailbox.

Parameters:
imap_stream

An IMAP stream returned by imap_open().

mailbox

The mailbox name, see imap_open() for more information

Returns:

Returns an associative array of "folder" => "acl" pairs.

Examples:
imap_getacl() example
<?php

print_r(imap_getacl($conn_id, 'user.joecool'));

?>

The above example will output something similar to:

Array
(
    [asubfolder] => lrswipcda
    [anothersubfolder] => lrswipcda
)
See also:

imap_setacl() -

doc_php
2016-02-24 16:02:01
Comments
Leave a Comment

Please login to continue.