strspn

(PHP 3>= 3.0.3, PHP 4 )

strspn --  マスクに一致する最初のセグメントの長さを返す

説明

int strspn (string str1, string str2)

str1の中で全て str2の中の文字からなる最初のセグメントの 長さを返します。


strspn ("42 is the answer, what is the question ...", "1234567890");
     

このコードは、結果として2を返します。

strcspn() も参照下さい。