Home > php教程 > php手册 > php检测邮箱密码

php检测邮箱密码

WBOY
Release: 2016-06-13 08:50:15
Original
1267 people have browsed it

php检测邮箱密码

$pattern = "/^[0-9a-zA-Z_-]+(\.[0-9a-zA-Z_-]+)*@[a-zA-Z0-9_-]+(\.{1}[a-zA-Z0-9_-]+)*\.{1}[a-zA-Z]{2,4}$/i";

if(!preg_match($pattern,$email)){

echo "邮箱不符合规则";

}

 

//$patternpwd = "/[A-Za-z]{6,15}/";

//$patternpwdnum = "/[0-9]{6,15}/";

$pa="/^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{6,16}$/";//字母数字不少于6位

if(!preg_match($pa,$pwd)){

    echo "密码不符合规则";

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template