輸出在字串"Hello world!" 中找到字元"w" 之前查找的字元數:
<?phpecho strcspn("Hello world!","w");?>strcspn() 函數傳回在找到任何指定的字元之前,在字串中尋找的字元數(包括空格)。
提示: Use the strspn() function to the number of characters found in the string that contains only characters from a specified character list.
註: This function is binary-safe.
strcspn( string,char,start,length )
參數 | 描述 |
---|---|
string | 必需。規定要搜尋的字串。 |
char | 必需。規定要找的字元。 |
start | 可選。規定開始尋找的位置。 |
length | 可選。規定字串的長度(搜尋多少字元)。 |
傳回值: | 傳回在找到任何指定的字元之前,在字串中尋找的字元數。 |
---|---|
PHP 版本: | 4+ |
更新日誌: | 在PHP 4.3 中,新增了start和length參數。 |
使用所有的參數來輸出在字串"Hello world!" 中找到字元"w" 之前查找的字元數:
<?phpecho strcspn("Hello world!","w",0,6); // The start position is 0 and the length of the search string is 6.?>