|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-04 22:56 UTC] andy at mindgate dot net
[2001-06-05 01:56 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 17 00:00:02 2025 UTC |
$mbox=imap_open("{pop3.mindgate.net/pop3:110}INBOX","name","passwd") or die ($imap_last_error()); $numMsgs=imap_num_msg($mbox); $i=1; while ($i<=$numMsgs) { $oview=imap_fetch_overview($mbox,$i); print $i." - ".$oview[0]->size."<br>"; $i++; } Isn't it supposed to return the same number as that shown by the LIST command in POP?