我需要能夠計算特定單詞在特定html標記中出現的次數。目前,我只能算出標籤中顯示的單詞總數。而且我可以統計文檔中單詞顯示總數的次數,但我無法弄清楚如何計算單詞在h3標籤中出現的次數。什麼,我需要PHP計算特定單詞在h3標記中出現的次數
實例:
Sample text here, blah blah blah, lorem ipsum
<h3>Lorem is in this h3 tag, lorem.</h3>
lorem ipsum dolor....
<h3>This is another h2 with lorem in it</h3>
所以當你看到這個詞「排版」是在該代碼的4倍,但我只想要算多少次這個詞「排版」顯示, h3標籤的。
我寧願繼續在這個項目上使用PHP。
非常感謝您的幫助
使用DOM訪問HTML文檔中的元素。 – knittl
..並使用[substr_count()](http://php.net/manual/en/function.substr-count.php) – Peter