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, 24 May 2013

view this page in

imap_getacl

(PHP 5)

imap_getaclBelirtilen posta kutusunun erişim izinlerini döndürür

Açıklama

array imap_getacl ( resource $imap_akımı , string $pk )

Belirtilen posta kutusunun (pk) erişim izinlerini döndürür.

Değiştirgeler

imap_akımı

imap_open() işlevinden dönen bir IMAP akımı.

pk

Posta kutusunun ismi; bilgi için imap_open()işlevine bakınız.

Dönen Değerler

"dizin" => "izinler" çiftlerinden oluşan bir ilişkisel dizi döner.

Örnekler

Örnek 1 - imap_getacl() örneği

<?php

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

?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

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

Notlar

Bu işlev sadece c-client2000 ve üstü kütüphane sürümleriyle kullanılabilir.

Ayrıca Bakınız

  • imap_setacl() - Belirtilen posta kutusu ile ilgili erişim izinlerini tanımlar



add a note add a note User Contributed Notes imap_getacl - [1 notes]
up
0
info at obengelb dot de
6 years ago
stream_id is the stream returned from imap_open

mailbox is a mailbox name (without server name)

Example:
print_r(imap_getacl ($strea_id, 'user.joecool'));

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

 
show source | credits | stats | sitemap | contact | advertising | mirror sites