PHP count_chars() 函數(shù)
PHP count_chars() 函數(shù)
實(shí)例
返回一個字符串,包含所有在 "Hello World!" 中使用過的不同字符(模式 3):
<?php
$str = "Hello World!";
echo count_chars($str,3);
?>
$str = "Hello World!";
echo count_chars($str,3);
?>
運(yùn)行實(shí)例 ?
定義和用法
count_chars() 函數(shù)返回字符串所用字符的信息(例如,ASCII 字符在字符串中出現(xiàn)的次數(shù),或者某個字符是否已經(jīng)在字符串中使用過)。
語法
count_chars(string,mode)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要檢查的字符串。 |
mode | 可選。規(guī)定返回模式。默認(rèn)是 0。有以下不同的返回模式:
|
技術(shù)細(xì)節(jié)
返回值: | 取決于指定的 mode 參數(shù)。 |
---|---|
PHP 版本: | 4+ |
更多實(shí)例
實(shí)例 1
返回一個字符串,包含所有在 "Hello World!" 中未使用過的字符(模式 4):
<?php
$str = "Hello World!";
echo count_chars($str,4);
?>
$str = "Hello World!";
echo count_chars($str,4);
?>
運(yùn)行實(shí)例 ?
實(shí)例 2
在本實(shí)例中,我們將使用 count_chars() 來檢查字符串,返回模式設(shè)置為 1。模式 1 將返回一個數(shù)組,ASCII 值為鍵名,出現(xiàn)的次數(shù)為鍵值:
<?php
$str = "Hello World!";
print_r(count_chars($str,1));
?>
$str = "Hello World!";
print_r(count_chars($str,1));
?>
運(yùn)行實(shí)例 ?
實(shí)例 3
統(tǒng)計 ASCII 字符在字符串中出現(xiàn)的次數(shù)另一個實(shí)例:
<?php
$str = "PHP is pretty fun!!";
$strArray = count_chars($str,1);
foreach ($strArray as $key=>$value)
{
echo "The character <b>'".chr($key)."'</b> was found $value time(s)<br>";
}
?>
$str = "PHP is pretty fun!!";
$strArray = count_chars($str,1);
foreach ($strArray as $key=>$value)
{
echo "The character <b>'".chr($key)."'</b> was found $value time(s)<br>";
}
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 語法
- PHP 常量
- PHP 字符串
- PHP Cookie
- PHP 過濾器
- PHP 高級過濾器
- PHP array_column() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP compact() 函數(shù)
- PHP end() 函數(shù)
- PHP krsort() 函數(shù)
- PHP list() 函數(shù)
- PHP natsort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP Filter 函數(shù)
- PHP Mail 函數(shù)