Question:What will be the output of the following code?$str = <<<EODtest line 1test line 2EOD;echo $str;
A <<<EOD B Syntax Error C test line 1test line 2 D EOD
+ AnswerC
+ Report