PHP strcspn()函數用於輸出在字串中找到某字符之前查找的字元數,其語法是strcspn(string,char,start,length),參數string必需,指規定要搜尋的字串; char必需,指規定要找的字元。
php strcspn函數怎麼用?
php strcspn()函數語法
作用:輸出在字串中找到某字符之前查找的字元數
語法:
strcspn(string,char,start,length)
參數:
string 必需。規定要搜尋的字串。
char 必要。規定要找的字元。
start 可選。規定在字串中何處開始尋找。
length 可選。規定字串的長度(搜尋多少字元)。
說明:
傳回在找到任何指定的字元之前,在字串中尋找的字元數(包括空格)。
php strcspn()函數使用範例1
<?php echo strcspn("Hello php.cn!","p"); ?>
#輸出:
6
php strcspn()函數使用範例2
<?php echo strcspn("PHP is a good development language! I love PHP","good"); ?>
#輸出:
9
這篇文章是關於PHP strcspn函數的介紹,希望對需要的朋友有幫助!
以上是php strcspn函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!