检索电子邮件:Gmail-PHP-IMAP

时间:2014-08-18 11:59:05

标签: php email

我正在使用IMAP协议将我的收件箱电子邮件提取到我正在编写的小型PHP应用程序中。

我收到此错误消息:

  

致命错误:允许的内存大小为33554432字节耗尽(尝试过   在/home/admin/public_html/boltmail/inbox.php中分配13055589个字节)   在第56行

但是,如果我看一下这个错误它没有多大意义.....它说允许的内存大小是33Mb而且它只需要13Mb来分配数据......

PHP代码:

    <?php

/* connect to gmail */
$hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
$username = 'tomasz@*****.com';
$password = '*****';

/* try to connect */
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());

/* grab emails */
$emails = imap_search($inbox,'ALL');

/* if emails are returned, cycle through each... */
if($emails) {

    /* begin output var */
    $output = '';

    /* put the newest emails on top */
    rsort($emails);

    /* for every email... */
    foreach($emails as $email_number) {

        /* get information specific to this email */
        $overview = imap_fetch_overview($inbox,$email_number,0);
        $message = imap_fetchbody($inbox,$email_number,2);

        /* output the email header information */
        $output.= '<div class="toggler '.($overview[0]->seen ? 'read' : 'unread').'">';
        $output.= '<span class="subject">'.$overview[0]->subject.'</span> ';
        $output.= '<span class="from">'.$overview[0]->from.'</span>';
        $output.= '<span class="date">on '.$overview[0]->date.'</span>';
        $output.= '</div>';

        /* output the email body */
        $output.= '<div class="body">'.$message.'</div>';
    }

    echo $output;
}

/* close the connection */
imap_close($inbox);




?>

此外我正在使用本教程导入我的Gmail电子邮件:Tutorial Link

1 个答案:

答案 0 :(得分:1)

错误消息可能令人困惑,但它确实有意义:php尝试分配13 MB,在允许的32 MB之上。所以你基本上至少需要45 MB。首先,增加内存限制,应该是这个问题。