美文网首页
屏蔽关键字

屏蔽关键字

作者: 康荨歌歌歌歌 | 来源:发表于2017-10-26 14:45 被阅读0次

/**    * 屏蔽关键字    *    * @access  public    * @param  $len int 字符串长度    * @return string    * @author  ly|神之谴* @return  string

*/

function shield($string)

{

$txt = file_get_contents(dirname(__FILE__).'/shield.txt');

$word = preg_replace("/[1,2,3]\r\n|\r\n/i", '|', $txt);

return preg_replace('/'.$word.'/', "*", $string);

}

相关文章

网友评论

      本文标题:屏蔽关键字

      本文链接:https://www.haomeiwen.com/subject/vnkkpxtx.html