我想要統計給定單詞的出現次數,而忽略案例。 我試圖如何計算字符串中單詞出現的次數而忽略案例
<?php
$string = 'Hello World! EARTh in earth and EARth';//string to look into.
if(stristr($string, 'eartH')) {
echo 'Found';// this just show eartH was found.
}
$timesfound = substr_count($string, stristr($string, 'eartH'));// this count how many times.
echo $timesfound; // this outputs 1 instead of 3.
確定這工作,但嘗試搜索 「大地」 我不認爲這將工作。 –
@Ronny不認爲這會是一個問題,但我已經更新了我的答案。 –
謝謝... :)現在,完美的作品。 :) –