What is the difference between ereg_replace() and eregi_replace()?
Posted by lampinterview on May 14, 2008
eregi_replace() function is identical to ereg_replace() except that it ignores case distinction when matching alphabetic characters.
Posted by lampinterview on May 14, 2008
eregi_replace() function is identical to ereg_replace() except that it ignores case distinction when matching alphabetic characters.
May 14, 2008 at 10:52 am
ereg_replace() is case sensitive like “test” cannot be treated as “TeSt” and eregi_replace() is not case sensitive
that means insensitive where “test” could be treated as “TeSt”.