Current Path : /www/users/H10079900/module/other/
Url:
Current File : /www/users/H10079900/module/other/word.php

<?php
function RpBadwords($string) {

GLOBAL $badwords;

$badlist=explode("|",$badwords);
$nn=count($badlist);
for ($i=0; $i<$nn; $i++) {
$string=str_replace($badlist[$i],"***",$string);
}

return $string;

}

//Example
$badwords = "TNND|shit|SHIT|TMD";
$string = "TMD,真不象话,简直SHIT!";
echo RpBadwords($string);
?>