array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.imap-getacl.php', 1 => 'imap_getacl', 2 => 'Gets the ACL for a given mailbox', ), 'up' => array ( 0 => 'ref.imap.php', 1 => 'IMAP Функції', ), 'prev' => array ( 0 => 'function.imap-get-quotaroot.php', 1 => 'imap_get_quotaroot', ), 'next' => array ( 0 => 'function.imap-getmailboxes.php', 1 => 'imap_getmailboxes', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/imap/functions/imap-getacl.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

imap_getacl

(PHP 5, PHP 7, PHP 8)

imap_getaclGets the ACL for a given mailbox

Опис

imap_getacl(IMAP\Connection $imap, string $mailbox): array|false

Gets the ACL for a given mailbox.

Параметри

imap

Примірник IMAP\Connection.

mailbox

The mailbox name, see imap_open() for more information

Увага

Передавати у цей параметр неперевірені дані небезпечно, якщо увімкнено imap.enable_insecure_rsh.

Значення, що повертаються

Returns an associative array of "folder" => "acl" pairs, або false в разі помилки.

Журнал змін

Версія Опис
8.1.0 Тепер параметр imap має бути примірником IMAP\Connection; раніше очікувався дійсний resource imap.

Приклади

Приклад #1 imap_getacl() example

<?php

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

?>

Поданий вище приклад виведе щось схоже на:

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

Примітки

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

Прогляньте також