PHP Класс BP_Reply_By_Email_Connect, bp-reply-by-email

Instantiate the class with the static init() method, which will return the the IMAP resource on success. Note: You will need to manually close the connection yourself with {@link imap_close()}.
С версии: 1.0-RC3
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
__construct ( array $args = [], resource $connection = false ) : resource | boolean Constructor.
init ( $args = [], $connection = false ) : resource | boolean Static initializer.
is_ssl ( integer $port ) : boolean Should we enable SSL for the IMAP connection?

Защищенные методы

Метод Описание
connect ( ) : resource | boolean Connect to an IMAP inbox.
get_mailbox ( ) : string Get the mailbox we want to connect to.
is_reconnection ( ) : boolean Whether we should attempt a reconnection.

Описание методов

__construct() публичный Метод

Constructor.
public __construct ( array $args = [], resource $connection = false ) : resource | boolean
$args array { An array of arguments. @type string $host The server name. (eg. imap.gmail.com) @type int $port The port number used by the server name. @type string $username The username used to login to the server. @type string $password The password used to login to the server. @type bool $validatecert Whether to validate certificates from TLS/ SSL server. Defaults to true. @type string $mailbox The mailbox to open. Defaults to 'INBOX'. @type int $retries How many times to try reconnection on failure. Defaults to 1. @type bool $reconnect Are we attempting a reconnection? Defaults to false. }
$connection resource The IMAP resource if attempting a reconnection.
Результат resource | boolean The IMAP resource on success. Boolean false on failure.

connect() защищенный Метод

Connect to an IMAP inbox.
protected connect ( ) : resource | boolean
Результат resource | boolean The IMAP resource on success. Boolean false on failure.

get_mailbox() защищенный Метод

This, basically, returns the first parameter of {@link imap_open()}, which is also the second parameter of {@link imap_reopen()}.
protected get_mailbox ( ) : string
Результат string

init() публичный статический Метод

Returns IMAP resource on success using the connect() method. For parameters, see constructor.
public static init ( $args = [], $connection = false ) : resource | boolean
Результат resource | boolean The IMAP resource on success. Boolean false on failure.

is_reconnection() защищенный Метод

Whether we should attempt a reconnection.
protected is_reconnection ( ) : boolean
Результат boolean

is_ssl() публичный статический Метод

Check to see if both the OpenSSL and IMAP modules are loaded. Next, see if the port is explictly 993.
public static is_ssl ( integer $port ) : boolean
$port integer The port number used for the IMAP connection.
Результат boolean