test_pop3.php(做为现在的主流开发语言)(做为现在的主流开发语言)");$user="user";$password="passwd";$apop=0;$pop3_connection=new pop3_class;$pop3_connection->hostname="mail.xiaocui.com";if(($error=$pop3_connection->Open())==""){ echo "

Connected to the POP3 server "$pop3_connection->hostname".
登录后复制
"; if(($error=$pop3_connection->Login($user,$password,$apop))=="") { echo "
User "$user" logged in.
登录后复制
"; if(($error=$pop3_connection->Statistics(&$messages,&$size))=="") { echo "
There are $messages messages in the mail box with a total of $size bytes.
登录后复制
"; $result=$pop3_connection->ListMessages("",0); if(GetType($result)=="array") { for(Reset($result),$message=0;$message
Message ",Key($result)," - ",$result[Key($result)]," bytes.
登录后复制
"; if($messages>0) { if(($error=$pop3_connection->RetrieveMessage(1,&$headers,&$body,-1))=="") { echo "
Message 1:
---Message headers starts below---
登录后复制
"; for($line=0;$line
",HtmlSpecialChars($headers[$line]),"
登录后复制
"; echo "
---Message headers ends above---
---Message body starts below---
登录后复制
"; for($line=0;$line
",HtmlSpecialChars($body[$line]),"
登录后复制
";

http://www.bkjia.com/PHPjc/509051.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/509051.htmlTechArticletest_pop3.php (做为现在的主流开发语言) HTML HEAD TITLETest for Manuel Lemoss php (做为现在的主流开发语言) POP3 class/TITLE /HEAD BODY ? require("pop3.php (做为...

08-29 21:04