(PHP 3>= 3.0.3, PHP 4 )
int strspn (string str1, string str2)
int strspn
str1の中で全て str2の中の文字からなる最初のセグメントの 長さを返します。
strspn ("42 is the answer, what is the question ...", "1234567890");
このコードは、結果として2を返します。
strcspn() も参照下さい。