What is the purpose of the str_replace function in PHP?
str_replace is a string replacement function in PHP that replaces a specified part of a string with new content. It takes three parameters: the content to be replaced, the content to replace it with, and the string to search for. It will search and replace all matching content in the original string.