(PHP 5, PHP 7)
  	
    
      
      Gets the ACL for a given mailbox
    
    
      
      array imap_getacl ( resource $imap_stream, string $mailbox )
    
    
    
    Gets the ACL for a given mailbox.
Parameters: 
  
      
      
      	imap_stream
    	
 
    	An IMAP stream returned by imap_open().
      	mailbox
    	
 
    	The mailbox name, see imap_open() for more information
Returns: 
    Returns an associative array of "folder" => "acl" pairs.
Examples: 
  
          imap_getacl() example
    	
      <?php print_r(imap_getacl($conn_id, 'user.joecool')); ?>
The above example will output something similar to:
Array
(
    [asubfolder] => lrswipcda
    [anothersubfolder] => lrswipcda
)
See also: 
     
      
                  
    		
    		
    		
    		
    		
            		
    		
    		
    	
Please login to continue.