You are currently browsing the yalamber.com posts tagged: note to self


str_word_count not counting numbers

I had problem where the str_word_count did not count the numbers as words.
resolved by adding numbers to the charlist

str_word_count($content, 0, '0123456789');


Tags