Rumah  >  Artikel  >  pembangunan bahagian belakang  >  用php得到163的邮件信息_PHP教程

用php得到163的邮件信息_PHP教程

WBOY
WBOYasal
2016-07-13 17:35:561100semak imbas


$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." ";
fwrite($sock,$command);
$msg=fgets($sock);
echo $msg;

$command="pass ".$password." ";
fwrite($sock,$command);
$msg=fgets($sock);
echo $msg;

$command="stat ";
fwrite($sock,$command);
$msg=fgets($sock);
echo $msg;

$command="list ";
fwrite($sock,$command);
while(true)
{
        $msg=fgets($sock);       
        echo $msg;
        if(preg_match(/^./,$msg))
                break;
}

$command="retr 1 ";
fwrite($sock,$command);
while(true)
{
        $msg=fgets($sock);
        echo $msg;
        if(preg_match(/^.( )$/,$msg))
                break;
}

$command="quit ";
fwrite($sock,$command);
$msg=fgets($sock);
echo $msg;
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/508285.htmlTechArticle? $host=pop.163.com; $port=110; $user=******; $password=******; if(!($sock=fsockopen(gethostbyname($host),$port,$errno,$errstr))) exit($errno.: .$errstr); set_socket_blocking($sock...
Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn