See what portion of a string is composed only of a given set of characters
|
<? $twister = "Peter Piper picked a peck of pickled peppers"; $charset = "Peter picked a"; print("The segment matching '$charset' is " . strspn($twister, $charset) . " characters long"); ?>
|
|
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
PHP Function Reference -> Users Code Examples / Notes - > strcspn:
- strcspn
|