What is the output?
$sting = 'I love Windows';
echo str_replace("Windows", "Linux", $string);
I love Windows
I love Linux
I love WindowsLinux