Mega Code Archive
Mixed count_chars ( string str [, int mode] ) returns an array containing the letters used in that string and how many times each l
$str = "This is a test, only a test, and nothing but a test.";
$a = count_chars($str, 1);
print_r($a);
?>