PHP strspn() 函數(shù)
PHP strspn() 函數(shù)
實(shí)例
返回在字符串 "Hello world!" 中包含字符 "kHlleo" 的數(shù)目:
<?php
echo strspn("Hello world!","kHlleo");
?>
echo strspn("Hello world!","kHlleo");
?>
運(yùn)行實(shí)例 ?
定義和用法
strspn() 函數(shù)返回在字符串中包含 charlist 參數(shù)中指定的字符數(shù)目。
提示:請(qǐng)使用 strcspn() 函數(shù)來返回在找到任何指定的字符之前,在字符串查找的字符數(shù)。
注釋:該函數(shù)是二進(jìn)制安全的。
語法
strspn(string,charlist,start,length)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定被搜索的字符串。 |
charlist | 必需。規(guī)定要查找的字符。 |
start | 可選。規(guī)定在字符串的何處開始。 |
length | 可選。定義字符串的長度。 |
技術(shù)細(xì)節(jié)
返回值: | 返回在字符串中包含 charlist 參數(shù)中指定的字符數(shù)目。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 4.3 中,新增了 start 和 length 參數(shù)。 |
更多實(shí)例
實(shí)例 1
返回在字符串 "abcdefand" 中包含字符 "abc" 的數(shù)目:
<?php
echo strspn("abcdefand","abc");
?>
echo strspn("abcdefand","abc");
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 字符串
- PHP 面向?qū)ο?/a>
- PHP $_GET 變量
- PHP 發(fā)送電子郵件
- PHP array_intersect_ukey() 函數(shù)
- PHP array_key_last() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP end() 函數(shù)
- PHP extract() 函數(shù)
- PHP key() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP 雜項(xiàng) 函數(shù)