I have just created a simple word filter for users bios when they are updated. This is the code:
 for($i=0;$i < sizeof($badwords);$i++){
  srand((double)microtime()*1000000); 
  $rand_key = (rand()%sizeof($replacements));
  $str = eregi_replace($badwords[$i], $replacements[$rand_key], $str);
 }
 return $str;
}
When I submit the Bio, the text saves however I get this error:
Deprecated: Function eregi_replace() is deprecated in /home/u557520691/public_html/inc/Global.php on line 177
Does anybody know how to fix this issue?
 
     
    