返回一个字符串,其中包含"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:
|
返回值: | 取决于指定的模式范围 |
---|---|
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>";
}
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!