?? [str??]

n.?; ?, ?? ??; ?

vt. ?????? ????

3?? ??: ??? ??: ??? ?? ??: ??? ?? ??: strung ?? ??: strung

PHP strcspn() ?? ???

??: ????? ??? ?? ?? ?? ?? ?? ??

??: ??strcspn(string,char,start,length)

????:

???? ??
string?????. ??? ???? ?????.
?? ?????. ??? ??? ?????.
??????. ????? ??? ??? ??? ?????.
?? ????. ???? ??(??? ?? ?)? ?????.

??: ??? ??? ?? ?? ????? ?? ?? ?(?? ??)? ?????.

PHP strcspn() ?? ?

<?php
echo strcspn("Hello php.cn!","p");
?>

???? ???

??? ????? ??? "???? ??" ??? ?????

??:

6


<?php
echo strcspn("PHP is a good development language! I love PHP","good");
?>

???? ???

??' ??? ??? ? ??

??:

9