-=[ Mr. Bumblebee ]=-
_Indonesia_
--TEST--
Torture the T_END_HEREDOC rules with variable expansions (heredoc)
--FILE--
<?php
require_once 'nowdoc.inc';
$fooledYou = '';
print <<<ENDOFHEREDOC
{$fooledYou}ENDOFHEREDOC{$fooledYou}
ENDOFHEREDOC{$fooledYou}
{$fooledYou}ENDOFHEREDOC
ENDOFHEREDOC;
$x = <<<ENDOFHEREDOC
{$fooledYou}ENDOFHEREDOC{$fooledYou}
ENDOFHEREDOC{$fooledYou}
{$fooledYou}ENDOFHEREDOC
ENDOFHEREDOC;
print "{$x}";
?>
--EXPECT--
ENDOFHEREDOC
ENDOFHEREDOC
ENDOFHEREDOC
ENDOFHEREDOC
ENDOFHEREDOC
ENDOFHEREDOC
Copyright © 2017 || Recoded By Mr.Bumblebee