我想找到句子中單詞的位置和頻率。 例如: You should eat two bananas before lunch and eat two before your dinner and then consume one banana.
找到句子中單詞的位置和頻率
,所以我會得到的結果: You -> 1 -> position : 1
Should -> 1 -> position : 2
eat -> 2 -> position : 3, 9
等
對於得到的頻率,我可以使用 array_count_values(str_word_count($str, 1))
但如何索引獲得位置? 謝謝:)