PHP 8.3.4 Released!

Instalação

To get these functions to work, you have to compile PHP with --with-imap[=DIR], where DIR is the c-client install prefix. From our example above, you would use --with-imap=/usr/local/imap-2000b. This location depends on where you created this directory according to the description above. Windows users may include the php_imap.dll DLL in php.ini.

Nota: Depending on how the c-client was configured, you might also need to add --with-imap-ssl=/path/to/openssl/ and/or --with-kerberos=/path/to/kerberos to the PHP configure line.

Aviso

The IMAP extension is not thread-safe; it should not be used with ZTS builds.

Aviso

As extensões IMAP, recode e YAZ não podem ser usadas em conjunto, pois compartilham os mesmos símbolos internos. Observação: a Yaz 2.0 e superiores não sofrem deste problema.

add a note

User Contributed Notes 2 notes

up
-2
Blessen
4 years ago
To install php-imap on Ubuntu18 try

sudo apt install php-imap
sudo phpenmod imap
up
-22
gabi3xz at yahoo dot com
6 years ago
In centos 7
yum install sclo-php70-php-imap or php71, check your of php version installed with yum list *php7*
To Top