How to prevent spam on websites like shown in the

2019-06-21 17:26发布

lately I have spotted many spam streads showing strange text behaviour like the following: enter image description here

i tried to understand this but even chromes tools won't help much: enter image description here

I have some websites online and want to implement a better spam protection client- and serverside but I need to know what to check in the first place. I need to know how this is done and maybe if it could be detected with a regex pattern.

any help would be appreciated!

p.s.: I wanted to write a better headline but I don't even know how this text behaviour is called and I didn't find anything on google

1条回答
兄弟一词,经得起流年.
2楼-- · 2019-06-21 17:34

It's not really SPAM, it's known as ZALGO. Detecting it in PHP is a bit tricky, try this regexp below:

if ( preg_match ( '/[^\x20-\x7E]/', $text ) || preg_match ( '/[^\x20-\x7E]/', $text ) ) {
    die('ZALGO not allowed');
}
查看更多
登录 后发表回答