update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets the ACL for a given mailbox

imap_getacl

(PHP 5, PHP 7)

imap_getaclGets the ACL for a given mailbox

설명

array imap_getacl ( resource $imap_stream , string $mailbox )

Gets the ACL for a given mailbox.

인수

imap_stream

imap_open()이 반환한 IMAP 스트림입니다.

mailbox

The mailbox name, see imap_open() for more information

반환값

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

예제

Example #1 imap_getacl() example

<?php

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

?>

위 예제의 출력 예시:

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

주의

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

참고