| eregi_replaceReplace regular expression case insensitive Warning
   
 This function was DEPRECATED in PHP 5.3.0, and REMOVED in PHP 7.0.0. Alternatives to this function include: 
 Description
   string eregi_replace
    ( string  $pattern, string$replacement, string$string)This function is identical to ereg_replace except that this ignores case distinction when matching alphabetic characters. Parameters
 
 Return Values
   The modified string is returned. If no matches are found in 
    Examples
 Example #1 Highlight search results 
<?phpSee Also
 
 |