PHP count_chars() Function
Example
Return a string with all the different characters used in "Hello World!" (mode 3):
<?php
$str = "Hello World!";
echo count_chars($str,3);
?>
Try it Yourself »
Definition and Usage
The count_chars() function returns information about characters used in a string (for example, how many times an ASCII character occurs in a string, or which characters that have been used or not been used in a string).
Syntax
count_chars(string,mode)
Parameter Values
Parameter | Description |
---|---|
string | Required. The string to be checked |
mode | Optional. Specifies the return modes. 0 is default. The different return modes are:
|
Technical Details
Return Value: | Depending on the specified mode parameter |
---|---|
PHP Version: | 4+ |
More Examples
Example
Return a string with all the unused characters in "Hello World!" (mode 4):
<?php
$str = "Hello World!";
echo count_chars($str,4);
?>
Try it Yourself »
Example
In this example we will use count_chars() with mode 1 to check the string. Mode 1 will return an array with the ASCII value as key and how many times it occurred as value:
<?php
$str = "Hello World!";
print_r(count_chars($str,1));
?>
Try it Yourself »
Example
Another example of counting how many times an ASCII character occurs in a string:
<?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>";
}
?>
Try it Yourself »
❮ PHP String Reference