PHP strcspn() 函數(shù)
PHP strcspn() 函數(shù)
實(shí)例
輸出在字符串 "Hello world!" 中找到字符 "w" 之前查找的字符數(shù):
<?php
echo strcspn("Hello world!","w");
?>
echo strcspn("Hello world!","w");
?>
運(yùn)行實(shí)例 ?
定義和用法
strcspn() 函數(shù)返回在找到任何指定的字符之前,在字符串查找的字符數(shù)(包括空格)。
提示: Use the strspn() function to the number of characters found in the string that contains only characters from a specified character list.
注釋?zhuān)?/b> This function is binary-safe.
語(yǔ)法
strcspn(string,char,start,length)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要搜索的字符串。 |
char | 必需。規(guī)定要查找的字符。 |
start | 可選。規(guī)定開(kāi)始查找的位置。 |
length | 可選。規(guī)定字符串的長(zhǎng)度(搜索多少字符)。 |
技術(shù)細(xì)節(jié)
返回值: | 返回在找到任何指定的字符之前,在字符串查找的字符數(shù)。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 4.3 中,新增了 start 和 length 參數(shù)。 |
更多實(shí)例
實(shí)例 1
使用所有的參數(shù)來(lái)輸出在字符串 "Hello world!" 中找到字符 "w" 之前查找的字符數(shù):
<?php
echo strcspn("Hello world!","w",0,6); // The start position is 0 and the length of the search string is 6.
?>
echo strcspn("Hello world!","w",0,6); // The start position is 0 and the length of the search string is 6.
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 教程
- PHP 簡(jiǎn)介
- PHP 數(shù)組
- PHP While 循環(huán)
- PHP 多維數(shù)組
- PHP array() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP ksort() 函數(shù)
- PHP next() 函數(shù)
- PHP prev() 函數(shù)
- PHP rsort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Filesystem 函數(shù)