Result Size: 625 x 571
x
 
<!DOCTYPE html>
<html>
<body>
<?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>";
   }
?>
</body>
</html>
The character ' ' was found 3 time(s)
The character '!' was found 2 time(s)
The character 'H' was found 1 time(s)
The character 'P' was found 2 time(s)
The character 'e' was found 1 time(s)
The character 'f' was found 1 time(s)
The character 'i' was found 1 time(s)
The character 'n' was found 1 time(s)
The character 'p' was found 1 time(s)
The character 'r' was found 1 time(s)
The character 's' was found 1 time(s)
The character 't' was found 2 time(s)
The character 'u' was found 1 time(s)
The character 'y' was found 1 time(s)
×

Report a Problem: