一般に、あなたの Web サイトを訪問した友人がメールを残してくれるように願っています
しかし、多くの人は気軽にメールを入力してしまい、管理者に迷惑をかけてしまいます
次のクラスは、メールが有効なメールであるかどうか (存在するかどうか) をオンラインで確認できます。 )
< ;
class CEmail {
var $email_normal_expression="^([a-z0-9_]|-|.)+@(([a-z0-9_]|-)+.)+[a-z] ]{2, 4 }$";
var $timeout=0;
var $localhost="";
var $localuser="";
Function GetLine($connection)
{
for($line="" ;;)
{
if(feof($connection))
return(0);
$length=strlen($line); 2
&& substr ($line,$length-2,2)=="rn")
return(substr($line,0,$length-2))
}
}
Function PutLine($connection, $line)
{
return(fputs($connection,"$linern"));
}
Function VerifyRule($email)
{
return(eregi($this->email_正規表現,$email)!=0 );
}
関数 ValidateEmailHost($email,$hosts=0)
{
if(!$this->VerifyRule($email))
$user=strtok($email," @");
$domain=strtok("");
if(GetMXRR($domain,&$hosts,&$weights))
{
$mxhosts=array();
for($host=0;$ host
KSort($mxhosts);
for(Reset($mxhosts),$host=0 ;$host< count ($mxhosts);Next($mxhosts),$host++)
$hosts[$host]=$mxhosts[Key($mxhosts)];
else
{
$hosts=array() ;
if( strcmp (@gethostbyname($domain),$domain)!=0)
$hosts[]=$domain;
return(count($hosts)!=0); ($connection, $ code)
{
while(($line=$this->GetLine($connection)))
{
if(!strcmp(strtok($line," "),$code))
return(1) ;
if(strtok($line,"-"),$code))
return(0)
}
return(-1);
関数 VerifyOnline($email)
{
if( ! $this->ValidateEmailHost($email,&$hosts))
return(0);
if(!strcmp($localhost=$this->localhost,"")
&& !strcmp( $localhost=getenv ( "SERVER_NAME"),"")
&& !strcmp($localhost=getenv("HOST"),""))
$localhost="localhost"
if(!strcmp($localuser=$; this->localuser ,"")
&& !strcmp($localuser=getenv("USERNAME"),"")
&& !strcmp($localuser=getenv("USER"),""))
$localuser= "root";
for($host=0;$host
if(($connection=($this->timeout ? fsockopen($hosts[$host], 25,&$ errno ,&$error,$this->timeout) : fsockopen($hosts[$host],25))))
{
if($this->VerifyResultLines($connection,"220") )>0
&& $this->PutLine($connection,"HELO $localhost")
http://www.bkjia.com/PHPjc/509063.html
www.bkjia.com
true