InterviewSolution
Saved Bookmarks
| 1. |
What is str_replace()? |
|
Answer» It is USED to replaces some CHARACTERS with some other characters in a string. Suppose, we want to Replace the characters "Umesh" in the string "Umesh Singh" with "SONU" ECHO str_replace("Umesh","Sonu","Umesh Singh"); |
|