IMAP Funkcje
PHP Manual

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ż:


IMAP Funkcje
PHP Manual