What is the output of the following code snippet? $str = ‘Hello World!’; echo str_replace(‘World’, ‘PHP’, $str); Mark as favorite Copy Link Hello PHP! Hello World! World PHP! PHP Hello! Check Answer