strcspn demo : strspn « String « PHP






strcspn demo

 
<?php
   $password = "a12345";
   if (strcspn($password, "1234567890") == 0) {
      print "Password cannot consist solely of numbers! ";
   }
?>
  
  








Related examples in the same category

1.strspn() function returns the length of the first segment in string1 containing characters also in string2.
2.strspn.php
3.strcspn() function returns the length of the first segment in string1 containing characters not in string2.