Zend 200-550 Question Answer
What is the output of the following code?
$text = 'This is text';
$text1 = <<<'TEXT'
$text
TEXT;
$text2 = << $text1 TEXT; echo "$text2";
Zend 200-550 Question Answer
What is the output of the following code?
$text = 'This is text';
$text1 = <<<'TEXT'
$text
TEXT;
$text2 = << $text1 TEXT; echo "$text2";