-
What will be the output of the following PHP code?
<?php
$Country = array("India", "England", "USA");
echo "I like " . $Country[2] . ", " . $Country[1] . " and " . $Country[0] . ".";
?>
-
- Error
- Nothing
- India England USA
- I like USA, England and India.
- None of these
Correct Option: D
The order of elements defined.