strcspn($password, '1234567890')
|
<?php $password = "a12345"; if (strcspn($password, "1234567890") == 0) { print "Password cannot consist solely of numbers! "; } ?>
|
|
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
PHP Function Reference -> Users Code Examples / Notes - > strcspn:
- strcspn
|