strspn
(PHP3 >= 3.0.3 , PHP4)
strspn --- 找出比对到的最初部份的长度
语法 :
int strspn
(string str1, string str2)说明 :
传回 str1最初的部份的长度,这个部份是完全地由 str2中的字元所构成的。
Example :
<?php
strspn ("42 is the answer, what is the question ...", "1234567890");
?>
传回的结果将会是 2
参考 : strcspn( )