目录

PHP count_chars() 函数

❮ PHP 字符串参考

示例

返回一个字符串,其中包含"Hello World!"(模式 3)中使用的所有不同字符:

<?php
$str = "Hello World!";
echo count_chars($str,3);
?>
亲自试一试 »

定义和用法

count_chars() 函数返回有关字符串中使用的字符的信息(例如,某个 ASCII 字符在字符串中出现了多少次,或者字符串中已使用或未使用哪些字符)。


语法

count_chars( string,mode)

参数值

Parameter Description
string Required. The string to be checked
mode Optional. Specifies the return modes. 0 is default. The different return modes are:
  • 0 - an array with the ASCII value as key and number of occurrences as value
  • 1 - an array with the ASCII value as key and number of occurrences as value, only lists occurrences greater than zero
  • 2 - an array with the ASCII value as key and number of occurrences as value, only lists occurrences equal to zero are listed
  • 3 - a string with all the different characters used
  • 4 - a string with all the unused characters


技术细节

返回值: 取决于指定的模式范围
PHP 版本: 4+

更多示例

示例

返回一个字符串,其中包含 "Hello World!" 中所有未使用的字符(模式 4):

<?php
$str = "Hello World!";
echo count_chars($str,4);
?>
亲自试一试 »

示例

在此示例中,我们将使用模式 1 的 count_chars() 来检查字符串。模式 1 将返回一个数组,其中 ASCII 值作为键,其出现次数作为值:

<?php
$str = "Hello World!";
print_r(count_chars($str,1));
?>
亲自试一试 »

示例

另一个计算 ASCII 字符在字符串中出现次数的示例:

<?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>";
  }
?>
亲自试一试 »

❮ PHP 字符串参考