<<< Previous question <<< Question ID#0240.md >>> Next question >>>
Consider the following PHP code snippet:
$who = "World";
echo <<<TEXT
"Hello $who"
TEXT;
What will be the output?
- A) "Hello World"
- B) TEXT "Hello World"
- C) <<< TEXT "Hello $who"
- D) TEXT "Hello $who"
Answer
Answer: A