What is the difference between ereg_replace() and
eregi_replace()?
Answers were Sorted based on User's Feedback
Answer / gunjan
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".
| Is This Answer Correct ? | 25 Yes | 6 No |
Answer / khalid
eregi_replace() function is identical to ereg_replace()
except that it ignores case distinction when matching
alphabetic characters
| Is This Answer Correct ? | 18 Yes | 5 No |
How to store the uploaded file to the final location?
What can php do?
Write a program to find the factorial of a number in php?
How can we know the count/number of elements of an array?
What is the best way to change the key without changing the value of a php array element?
What is $_ get?
Is strcmp case sensitive?
Explain what does $_files means?
What is apache and php?
what is "mysql_pconnect", i know mysql_connect but what it is pconnect is their?
Explain different sorting function in php?
What is Gd PHP?