如何从字符串中获取php脚本中的字母或符号的频率。
我试图为网络制作某种字谜制作者。
答案 0 :(得分:0)
但请注意,原因如下:
$text = 'This is a test';
echo substr_count($text, 'is'); // returns 2 occurences
返回2而不是1,所以如果要检查单词,请使用:
$text = 'This is a test';
echo substr_count($text, ' is '); // returns 1 occurence