PHP小于或等于不工作

时间:2014-04-19 17:42:56

标签: php passwords

我尝试设置密码中可以包含的最少字符数,这就是我正在使用的

 if (strlen($pass1 <= 6)){
    echo "Password must be at least 6 characters long";
}   

如果我的密码少于6或超过6,它仍然会回复消息。我很确定我能正确设置一切吗?

2 个答案:

答案 0 :(得分:1)

错误的括号!

if (strlen($pass1) <= 6) {
    echo "Password must be at least 6 characters long";
}  

答案 1 :(得分:0)

这就是你需要做的。

   if (strlen($pass1) <= 6 ){