> 백엔드 개발 > PHP 튜토리얼 > pop3邮件收取一例_PHP教程

pop3邮件收取一例_PHP教程

WBOY
풀어 주다: 2016-07-13 17:31:33
원래의
1149명이 탐색했습니다.

test_pop3.php(做为现在的主流开发语言)



Test for Manuel Lemoss php<font class="reblank">(做为现在的主流开发语言)</font> POP3 class



require("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 <b>$messages</b> messages in the mail box with a total of <b>$size</b> bytes.
로그인 후 복사
";
         $result=$pop3_connection->ListMessages("",0);
         if(GetType($result)=="array")
         {
            for(Reset($result),$message=0;$message               echo "
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                     echo "
",HtmlSpecialChars($headers[$line]),"
로그인 후 복사
";
                  echo "
---Message headers ends above---
---Message body starts below---
로그인 후 복사
";
                  for($line=0;$line                     echo "
",HtmlSpecialChars($body[$line]),"
로그인 후 복사
";

www.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 (做为...
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿