查找出现次数最多的字符PHP代码

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

$arr=str_split($str);
$arr=array_count_values($arr);
arsort($arr);
print_r($arr);