count_chars.php : count_chars « String « PHP
- PHP
- String
- count_chars
count_chars.php
<?php
$sentence = "this is a test";
$chart = count_chars($sentence, 1);
foreach($chart as $letter=>$frequency)
echo "Character ".chr($letter)." appears $frequency times<br />";
?>
Related examples in the same category