1
I have a text and would like to find certain words, but in the way I’m doing that is with the substr_count()
I can only find the word as I wrote it.
Example
$text = "Eu sou um Menino e gosto de brincar com outros MENINOS";
$count= substr_count($text , 'menino');
echo $count;
The result of this will be 0
because as the function is case sensitive
won’t find me the other words, the way around this?
You can leave the search and string in low or high box.
– rray