Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 404 Bytes

0497.md

File metadata and controls

22 lines (18 loc) · 404 Bytes

What is the output of the following code?

$a = "Apple";
echo <<<'A'
pass me that $a
A;
  • A) pass me that $a
  • B) syntax error
  • C) "pass me that Apple"
  • D) "pass me that apple"
Answer

Answer: A