preg_replace删除所有不需要的字符

时间:2016-01-21 19:06:36

标签: php regex preg-replace

我想阻止或删除我网站上的所有不需要的字符

像ᾄҭᾄ这样的人物 或者нєℓℓσ 你好 等。

我的代码现在是

class badWordsC
{
    public function check($text)
    {
        $badwords    = 'com|net|org|info|.name|.biz|.me|.tv|.tel|.mobi|.asia|.uk|.eu|.us|.in|.tk|.cc|.ws|.bz|.mn|.co|.tw|.vn|.es|.pw|.club|.ca|.cn|.email|.photography|.photos|.tips|.solutions|.center|.gallery|.kitchen|.land|.technology|.today|.academy|.computer|.shoes|.careers|.domains|.coffee|.link|.guru|.estate|.company|.bike|.clothing|.holdings|.plumbing|.singles|.ventures|.camera|.equipment|.graphics|.lighting|.construction|.contractors|.directory|.diamonds|.enterprises|.voyage|.recipes|.gift|.site|.ly|.gq|.cf|.ga|.ml|.tk|in|rb2';
        $badwords   .= 'type|ingoogle';
        $badwords    = explode('|', $badwords);

        $goodwords   = 'youtube.com|prntscr.com|az545221.vo.msecnd.net';
        $goodwords  .= 'wink|crying|fingerscrossed|blushing|wondering|inlove|evilgrin|yawning|puking|in';
        $goodwords   = explode('|', $goodwords);


        $text        = str_replace($goodwords, '', $text);
        $text        = trim(preg_replace('/\s\s+/', '', $text));
        $text        = preg_replace('/\P{L}+/u', '', $text);




        foreach ($badwords as $word)
        {
            if (strpos($text, $word) !== false || strpos($text, strtoupper($word)) !== false)
            {
                return false;
            }
        }

        $text = preg_replace("/[a-zA-Z0-9]/", '', $text);
        $text = preg_replace(array('/)/','/(/','/;/','/-/','/+/','/لأ/','/لإ/','/لا/','/إ/','/أ/', '/ا/', '/ض/', '/ص/', '/ث/', '/ق/', '/ف/', '/غ/', '/ع/', '/ه/', '/خ/', '/ح/', '/ج/', '/د/', '/ش/', '/س/', '/ي/', '/ب/', '/ل/', '/ت/', '/ن/', '/م/', '/ك/', '/ط/', '/ئ/', '/ء/', '/ؤ/', '/ر/', '/ى/', '/ة/', '/و/', '/ز/', '/ظ/', '/ذ/', '/ـ/'), '', $text);



        if($text != '')
        {
            return false;
        }

        return true;
    }
}

它的工作但不是臃肿或删除像нĔĔ

这样的字符

任何想法?

1 个答案:

答案 0 :(得分:1)

您需要使用的u修饰符也需要扩展您的字符类以包含非ascii字符。

我使用:

/[[:alnum:]]/u

正则表达式演示:https://regex101.com/r/iS1yZ2/2

这是一个posix括号,你可以在这里看到更多这些,www.regular-expressions.info /posixbrackets.html。

同样在你的第二个表达式中,+需要被转义(或放入一个字符类,有一些符号放入一个不会修复-的字符,{{1} },])因为那是一个量词。有一个PHP函数可以转义特殊字符preg_quote