downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

imap_getmailboxes> <imap_get_quotaroot
[edit] Last updated: Fri, 30 Nov 2012

view this page in

imap_getacl

(PHP 5)

imap_getaclGets the ACL for a given mailbox

Opis

array imap_getacl ( resource $imap_stream , string $mailbox )

Gets the ACL for a given mailbox.

Parametry

imap_stream

Strumień IMAP zwrócony przez imap_open().

mailbox

The mailbox name, see imap_open() for more information

Zwracane wartości

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

Przykłady

Przykład #1 imap_getacl() example

<?php

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

?>

Powyższy przykład wyświetli coś podobnego do:

Array
(
    [asubfolder] => lrswipcda
    [anothersubfolder] => lrswipcda
)

Notatki

This function is currently only available to users of the c-client2000 or greater library.

Zobacz też:



add a note add a note User Contributed Notes imap_getacl - [1 notes]