字母/符号频率(PHP)

时间:2016-03-07 16:22:14

标签: php variables

如何从字符串中获取php脚本中的字母或符号的频率。

我试图为网络制作某种字谜制作者。

1 个答案:

答案 0 :(得分:0)

使用substr_count()

但请注意,原因如下:

$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