php敏感词语过滤
程序员文章站
2022-07-12 18:58:50
...
$result = '马拉个巴子的'; //文本
$replace = '屁屁'; //替换成
$sensitive = ['巴子','shapi']; //敏感词
$srtWords = array_combine( $result, array_fill( 0, count( $result ), $replace ) );
$result = strtr( $result, $srtWords );
上一篇: ab测试工具简单使用