PHP strspn()函數用於計算字串中全部字元都存在於指定字元集合中的第一段子字串的長度,其語法是strspn(string,charlist,start,length),參數string必需,指規定被搜尋的字串;charlist必需,指規定要找的字元。
php strspn函式怎麼用?
php strspn()函數語法
作用:傳回字串中包含某些字元的數量
語法:
strspn(string,charlist,start,length)
參數:
string 必要。規定被搜尋的字串。
charlist 必要。規定要找的字元。
start 可選。規定在字串的何處開始。
length 可選。定義字串的長度。
說明:
傳回字串中包含 charlist 參數中指定字元的數目。
php strspn()函數使用範例1
<?php echo strspn("Hello world!","kHlleo"); ?>
#輸出:
5
php strspn()函數使用範例2
<?php echo strspn("PHP is a good development language! I love PHP","PHP"); ?>
輸出:
3
這篇文章是關於PHP strspn函數的介紹,希望對需要的朋友有幫助!
以上是php strspn函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!