gpt4 book ai didi

php - 我想要密码中的一些特殊字符

转载 作者:太空宇宙 更新时间:2023-11-03 11:39:41 24 4
gpt4 key购买 nike

我写了

$this->form_validation->set_rules(
'password',
'password',
'required|min_length[4]|max_length[8]|regex_match[/^[a-z0-9]+$/]'
);

但我想要:
密码必须恰好包含 2特殊字符和2个大写字母

怎么写?

最佳答案

您可以使用回调函数:示例:

public function password_check($str)
{
if (preg_match('#[\W]{2}#', $str) && preg_match('#[A-Z]{2}#', $str)) {
return TRUE;
}
return FALSE;
}

和验证部分:

$this->form_validation->set_rules('password', 'Password', 'required|matches[passconf]|min_length[8]|alpha_numeric|callback_password_check');

关于php - 我想要密码中的一些特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43041615/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com