<?$host='pop.163.com';$port=110;$user='******';$password='******';if(!($sock=fsockopen(gethostbyname($host),$port,$errno,$errstr))) exit($errno.': '.$errstr);set_socket_blocking($sock,true);$msg=fgets($sock);echo $msg;$command="user ".$user."\r\n";fwrite($sock,$command);$msg=fgets($sock);echo $msg;$command="pass ".$password."\r\n";fwrite($sock,$command);$msg=fgets($sock);echo $msg;$command="stat\r\n";fwrite($sock,$command);$msg=fgets($sock);echo $msg;$command="list\r\n";fwrite($sock,$command);while(true){ $msg=fgets($sock); echo $msg; if(preg_match('/^\./',$msg)) break;}$command="retr 1\r\n";fwrite($sock,$command);while(true){ $msg=fgets($sock); echo $msg; if(preg_match('/^\.(\r\n)$/',$msg)) break;}$command="quit\r\n";fwrite($sock,$command);$msg=fgets($sock);echo $msg;?>
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索php
, 邮件
, 信息
163
php 163 发邮件、phpmailer给163发邮件、php 发邮件 163 下载、163邮件撤回、163邮件如何撤回,以便于您获取更多的相关知识。
时间: 2024-11-01 13:20:58