PHP - String Functions
What will be the output of the following PHP code?
$text = "I love apples.";
$result = str_replace("apples", "oranges", $text);
echo $result;