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 |
What happens when submit button is clicked?
programm for factorial
How to create an array in php?
Tell me how to initiate a session in php?
What are access specifiers?
"mysql_fetch_row — Get a result row as an enumerated array",this sentence comes from the PHP offical manual.However ,i can not understand the words "enumerated array".I need some help.Thanks a lot to everyone that reply.
The left association operator % is used in PHP for?
Tell us what is the difference between session_unregister() and session_unset()?
Does browser understand php?
How is traits used in php?
How to pad an array with the same value multiple times?
Write down the code for saving an uploaded file in PHP.