Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 431 Bytes

0240.md

File metadata and controls

23 lines (19 loc) · 431 Bytes

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