function validEmail($email) {
$isValid = true;
$atIndex = strrpos ( $email, "@" );
if (is_bool ( $atIndex ) && ! $atIndex) {
$isValid = false;
} else {
$domain = substr ( $email, $atIndex + 1 );
$local = substr ( $email, 0, $atIndex );
$localLen = strlen ( $local );
$domainLen = strlen ( $domain );
if ($localLen < 1 || $localLen > 64) {
// local part length exceeded
$isValid = false;
} else if ($domainLen < 1 || $domainLen > 255) {
// domain part length exceeded
$isValid = false;
} else if ($local [0] == '.' || $local [$localLen - 1] == '.') {
// local part starts or ends with '.'
$isValid = false;
} else if (preg_match ( '/\.\./', $local )) {
// local part has two consecutive dots
$isValid = false;
} else if (! preg_match ( '/^[A-Za-z0-9\-\.]+$/', $domain )) {
// character not valid in domain part
$isValid = false;
} else if (preg_match ( '/\.\./', $domain )) {
// domain part has two consecutive dots
$isValid = false;
} else if (! preg_match ( '/^(\\.|[A-Za-z0-9!#%&`_=\/$'*+?^{}|~.-])+$/', str_replace ( "\\", "", $local ) )) {
// character not valid in local part unless
// local part is quoted
if (! preg_match ( '/^"(\\"|[^"])+"$/', str_replace ( "\\", "", $local ) )) {
$isValid = false;
}
}
//5.3.0 This function is now available on Windows platforms.
if ($isValid && ! (checkdnsrr ( $domain, "MX" ) || checkdnsrr ( $domain, "A" ))) {
// domain not found in DNS
$isValid = false;
}
}
return $isValid;
}
Gyb2b V1.01免费版可终身使用,是一款功能强大的B2B电子商务应用软件。该软件不仅更新和修改了V1.0相关功能,更是采用了目前互联网上最流行的LAMP组合(Linux+Apache+Mysql+PHP)开发完成,模板技术实现了界面与代码的有效分离,用户可以快速地在此基础上编译模板;提供B2B电子商务应用最常见的求购、供应、商品、公司库、行业资讯、商圈、资信认证、在线交易、交易评分、留言、搜
0
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号