What is the output of this code?
$world = ‘world’;
echo <<<‘TEXT’
hello $world
TEXT;
A . hello world
B . hello $world
C . PHP Parser error
Answer: C
What is the output of this code?
$world = ‘world’;
echo <<<‘TEXT’
hello $world
TEXT;
A . hello world
B . hello $world
C . PHP Parser error
Answer: C