在php中检查密码?

时间:2010-10-14 22:06:05

标签: php passwords html-form

如何使用php检查密码是否超过6个字母,这是我的注册表单。 :))谢谢

3 个答案:

答案 0 :(得分:2)

if(strlen(trim($password)) > 6){
  // do something here
}

答案 1 :(得分:1)

我认为你会发现这非常有用:

http://www.phpro.org/tutorials/Validating-User-Input.html

祝你好运,如果你需要任何帮助,请告诉我!

答案 2 :(得分:0)

您可以使用strlen()函数。