php - eregi_replace() is deprecated -
Code> ($ i = 0; $ i & lt; size ($ badwords); $ i ++) {srand ((double) microtim () * 1000000); $ Rand_key = (rand ()% sizeof ($ replacement)); $ Str = eregi_replace ($ badwords [$ i], $ replacement [$ rand_key], $ str); } Return $ str; }
When I submit bio, saves text, but I get this error:
Deprecated: function eregi_replace () to / home / U557520691 has been deprecated /public_html/inc/Global.php line 177
Does anyone know how to fix this problem?
try this
or turn off the notice < / P>
error_reporting (E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
or
error_reporting (E_ALL ^ E_DEPRECATED);
Comments
Post a Comment