str_replace < PHP
The str_replace function replaces all occurrences of the search string with the replacement string
$sentence = "It was nice meeting you. May you shine bright.";
$sentence_replace = str_replace('you', 'him', $sentence);
print_r($sentence_replace);
// It was nice meeting him. May him shine bright.