I am trying to stop spam and a lot of it is recurring words, is there any way to check the string to see if there is a recurring phrase inside the string?
$string = 'Hello ! Hello ! Hello ! Hello !";
Thanks,
|
|
This will give you this:
You can |
|||||||
|
|
A fast Google Search gave me that: http://php.net/manual/en/function.substr-count.php However there are better anti-spam ideas. Like Captchas. Human spammers are pretty difficult to catch. They'll find a way around your word counter. Maybe you should think about an approach of user-based spam report like Youtube does. |
||||
|
|
|
You could try substr_count(): http://php.net/manual/en/function.substr-count.php
Of course if you want to check whether ANY of the words in your string occur multiple times... then this becomes a lot less efficient. You'd probably have to keep track of a list of 'checked words' and, for each not-yet-checked word in your string check whether it occurs multiple times. LIke Binarious mentioned, a captcha would be a nicer way to stop spam ;-) |
|||
|