标签: php passwords html-form
如何使用php检查密码是否超过6个字母,这是我的注册表单。 :))谢谢
答案 0 :(得分:2)
if(strlen(trim($password)) > 6){ // do something here }
答案 1 :(得分:1)
我认为你会发现这非常有用:
http://www.phpro.org/tutorials/Validating-User-Input.html
答案 2 :(得分:0)
您可以使用strlen()函数。