Heim >php教程 >php手册 >PHP利用imap收件箱的例子

PHP利用imap收件箱的例子

WBOY
WBOYOriginal
2016-05-26 08:21:142319Durchsuche

imap是一款邮件交互访问的协议了,下面我来给大家介绍利用php imap模块来快速获取邮件的例子,有兴趣的朋友可参考一下,列出所有目录,代码如下:

$host = '{imap.mail.yahoo.com:993/ssl}'; 
$user = 'user@yahoo.com'; 
$pass = 'password'; 
$inbox = imap_open($host, $user, $pass); 
$mailboxes = imap_list($inbox, $host, '*'); 
$mailboxes = str_replace($host, '', $mailboxes); 
print_r($mailboxes);

//结果: 

Array 
( 
[0] => Bulk Mail 
[1] => Draft 
[2] => Inbox 
[3] => Sent 
[4] => Trash 
)

重新打开指定的目录:

imap_reopen($inbox, $host.'Bulk Mail'); 
$emails = imap_search($inbox,'ALL'); 
print_r($emails);

windows安装imap

注意在windows中我们需要开启php.ini中的一个imap模板了,在php中找到php_imap.dll扩展然后开启,同时如果你看extensions没有关php_imap.dll需要复制一个过去.

linux中安装imap

最后完整的编译 imap 模块参数如下:

./configure --with-php-config=/usr/local/webserver/php/bin/php-config --with-kerberos=/usr --with-imap-ssl=/usr 
make 
make install

   


永久链接:

转载随意!带上文章地址吧。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn