php 判断字符串是否同时包含A-Z a-z 0-9
发布网友
发布时间:2022-04-07 06:37
我来回答
共2个回答
热心网友
时间:2022-04-07 08:07
/**
* 检测密码是否符合要求
* 规则: 小写字母,大写字母,数字这三种字符任意组合且长度在6到16位之间
*
* @param string $password 密码
* @return bool 是否通过(true-通过,false-不通过)
*/
function checkPassword($password){
return preg_match('/^([a-zA-Z0-9]+){6,16}$/', $password);
}