strspn() 函數傳回在 charlist 參數的字串中找到的字元數。
strspn(str,charlist,begin,len)
#str - 要搜尋的字串
< strong>charlist - 要尋找的字元
#開始 - 在字串中從哪裡開始
#len - 字串的長度
strspn() 函數傳回字元數在charlist 參數的字串中找到。如果未找到字串,則傳回 false。
以下是範例 -
即時示範
<?php echo strspn("mobilephone","o"); ?>
以下是輸出 -
0
以上是在PHP中的strspn()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!