Mega Code Archive

 
Categories / Php / Strings
 

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"); ?>