Question:
What is the difference between ereg_replace() and eregi_replace()?
Answer
ereg_replace(): it is used to find and replace a pattern with a replacement string.
eregi_replace(): same as ereg_replace() except the search of for the pattern is case insensitive.
+ Report
What is the difference between ereg_replace() and eregi_replace()?